query-4dc987ca35040f7df3a7a289123773d7
List of Czech companies SELECT ?item ?itemLabel ?hqLabel WHERE { ?item wdt:P31 wd:Q4830453 . ?item wdt:P159 ?hq . ?hq wdt:P131* wd:Q213 . SERVICE wikibase:label { bd:serviceParam wikibase:language "cs,en" } . } ORDER BY ?itemLabel
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#>
# List of Czech companies
SELECT ?item ?itemLabel ?hqLabel
WHERE
{
?item wdt:P31 wd:Q4830453 .
?item wdt:P159 ?hq . ?hq wdt:P131* wd:Q213 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "cs,en" } .
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?hq")
v2("?item"):::projected
v1("?itemLabel"):::projected
c5(["wd:Q213"]):::iri
c7(["bd:serviceParam"]):::iri
c2(["wd:Q4830453"]):::iri
c9(["cs,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P159"--> v3
v3 --"wdt:P131"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end