query-0614089fbbd2e05ffa7b05637f7a9193
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 ?item ?itemLabel ?P569 ?P4574 WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
{
SELECT DISTINCT ?item ?P569 ?P4574 WHERE {
?item wdt:P27 wd:Q20.
?item wdt:P39/wdt:P279* wd:Q37226.
OPTIONAL { ?item wdt:P569 ?P569. }
OPTIONAL { ?item wdt:P4574 ?P4574. }
}
LIMIT 500
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?P4574"):::projected
v2("?P569"):::projected
v1("?item"):::projected
a1((" "))
c9(["wd:Q37226"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;"]):::literal
c6(["wd:Q20"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P27"--> c6
v1 --"wdt:P39"--> a1
a1 --"wdt:P279"--> c9
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P569".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P4574".-> v3
end