MathModDB/Research problem: Difference between revisions

From MaRDI portal
Line 10: Line 10:
     ?item rdfs:label ?Label .
     ?item rdfs:label ?Label .
     FILTER(LANG(?Label) = "en")
     FILTER(LANG(?Label) = "en")
    BIND(CONCAT("<a href=", STR(?item), ">", STR(?Label) ,"</a>") as ?Research_Problems)
    BIND(STRAFTER(STR(?item), "entity/Q") AS ?qid)
    BIND(CONCAT("<a href=https://portal.mardi4nfdi.de/wiki/Research_problem:", STR(?qid), ">", STR(?Label), "</a>") AS ?Research_Problems)
}
}
| endpoint= https://query.portal.mardi4nfdi.de/proxy/wdqs/bigdata/namespace/wdq/sparql
| endpoint= https://query.portal.mardi4nfdi.de/proxy/wdqs/bigdata/namespace/wdq/sparql

Revision as of 13:20, 20 May 2025

List of research problem individuals

{{#sparql: SELECT ?Research_Problems WHERE {

   ?item wdt:P31 wd:Q6032837;
         wdt:P1495 wd:Q6534265 .
   ?item rdfs:label ?Label .
   FILTER(LANG(?Label) = "en")
   BIND(STRAFTER(STR(?item), "entity/Q") AS ?qid)
   BIND(CONCAT("<a href=https://portal.mardi4nfdi.de/wiki/Research_problem:", STR(?qid), ">", STR(?Label), "</a>") AS ?Research_Problems)

} | endpoint= https://query.portal.mardi4nfdi.de/proxy/wdqs/bigdata/namespace/wdq/sparql | chart=bordercloud.visualization.DataTable | log=2 }}