query-098ae373bcd447c3eff149c193fd9369
Give me all accepted NFDI consortia!
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?p ?pLabel ?pAltLabel ?pDescription ?inception
WHERE
{
?p wdt:P31 wd:Q98270496 .
OPTIONAL { ?p wdt:P571 ?inception }
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
c5(["bd:serviceParam"]):::iri
c7(["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
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end