query-2e4e5e885fa375a30a6475a8d27297f6
Tazary4
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel
WHERE
{
VALUES ?item { wd:Q8018910 wd:Q4738516 wd:Q5014706 wd:Q7757717 }
OPTIONAL { ?item p:P625 ?coord . }
FILTER (! BOUND(?coord) )
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?coord")
v2("?item"):::projected
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["not bound(?coord)"]]
f0 --> v1
bind1[/VALUES ?item/]
bind1-->v2
bind10(["wd:Q8018910"])
bind10 --> bind1
bind11(["wd:Q4738516"])
bind11 --> bind1
bind12(["wd:Q5014706"])
bind12 --> bind1
bind13(["wd:Q7757717"])
bind13 --> bind1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:P625".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end