query-762de4dd90f5c2af8728d98b7641472a
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?description WHERE {
?item wdt:P17 wd:Q40.
?item schema:description ?description.
FILTER (lang(?description) = "en" )
FILTER regex(?description, "' Austria").
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } .
} limit 500
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?description"):::projected
v2("?item"):::projected
c7(["bd:serviceParam"]):::iri
c4(["wd:Q40"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["regex(?description,'' Austria')"]]
f0 --> v1
f1[["?description = 'en'"]]
f1 --> v1
v2 --"wdt:P17"--> c4
v2 --"schema:description"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end