query-3ff0466f41443baebb97f7e8bbe14157
emergency management (Q1460420) + government agency (Q327333) SELECT DISTINCT ?item ?itemLabel ?countryLabel ?operating_areaLabel WHERE { ?item wdt:P101 wd:Q1460420; (p:P31/ps:P31/(wdt:P279*)) wd:Q327333. OPTIONAL { ?item wdt:P17 ?country. } OPTIONAL { ?item wdt:P2541 ?operating_area. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de,fr,ru,es,ja,zh,ar". } } ORDER BY (?countryLabel) (?operating_areaLabel)
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# emergency management (Q1460420) + government agency (Q327333)
SELECT DISTINCT ?item ?itemLabel ?countryLabel ?operating_areaLabel WHERE {
?item wdt:P101 wd:Q1460420;
(p:P31/ps:P31/(wdt:P279*)) wd:Q327333.
OPTIONAL { ?item wdt:P17 ?country. }
OPTIONAL { ?item wdt:P2541 ?operating_area. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de,fr,ru,es,ja,zh,ar". }
}
ORDER BY (?countryLabel) (?operating_areaLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?country")
v1("?countryLabel"):::projected
v3("?item"):::projected
v5("?operating_area")
v2("?operating_areaLabel"):::projected
a1((" "))
a2((" "))
c12(["#91;AUTO_LANGUAGE#93;,en,de,fr,ru,es,ja,zh,ar"]):::literal
c10(["bd:serviceParam"]):::iri
c6(["wd:Q327333"]):::iri
c2(["wd:Q1460420"]):::iri
v3 --"p:direct/P101"--> c2
v3 --"p:P31"--> a1
a1 --"p:statement/P31"--> a2
a2 --"p:direct/P279"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."p:direct/P17".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."p:direct/P2541".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end