query-21726555e8499dabdffffb1dacfacb05
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?country ?label ?relation WHERE {
?country wdt:P31 wd:Q6256 .
OPTIONAL {
?country wdt:P402 ?relation .
}
FILTER (!BOUND(?relation))
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
?country rdfs:label ?label
}
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?country"):::projected
v3("?label"):::projected
v1("?relation"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c2(["wd:Q6256"]):::iri
f0[["not bound(?relation)"]]
f0 --> v1
v2 --"wdt:P31"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P402".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
v2 --"rdfs:label"--> v3
end