query-8b14b11cd6abd6ba618b46f9840b50c5
TODO
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 DISTINCT ?project ?projectLabel ?inception ?use ?useLabel
WHERE
{
?project wdt:P31/wdt:P279* wd:Q20726407.
?project wdt:P31/wdt:P279* wd:Q189210.
OPTIONAL {?project wdt:P571 ?inception}
OPTIONAL {?project wdt:P366 ?use}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY ?projectLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?inception"):::projected
v2("?project"):::projected
v1("?projectLabel"):::projected
v4("?use"):::projected
a1((" "))
a2((" "))
c3(["wd:Q20726407"]):::iri
c8(["bd:serviceParam"]):::iri
c4(["wd:Q189210"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P31"--> a2
a2 --"wdt:P279"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P571".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P366".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end