query-a0ec25b92c19d23a174067c361cc6dd5

rq turtle/ttl

Give me all accepted NFDI consortia that have a Wikipedia page!(currentöy: none)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?inception ?p ?pLabel ?pAltLabel ?pDescription ?wikipediaeintrag
WHERE 
{
  ?p wdt:P31 wd:Q98270496 .
  OPTIONAL { ?p wdt:P571 ?inception }
  ?wikipediaeintrag schema:about ?p .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?inception) ASC(?pLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?inception"):::projected v3("?p"):::projected v2("?pLabel"):::projected v4("?wikipediaeintrag"):::projected c6(["bd:serviceParam"]):::iri c8(["de,en"]):::literal c2(["wd:Q98270496"]):::iri v3 --"wdt:P31"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P571".-> v1 end v4 --"schema:about"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end