query-e3751f9b5103e657a99a7f8e4f6e65da
alle
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#>
SELECT DISTINCT ?gastro ?gastroLabel ?gastroDescription ?address
WHERE
{
?gastro wdt:P31 wd:Q88985865.
?gastro wdt:P131 wd:Q2112.
OPTIONAL { ?gastro wdt:P6375 ?address. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?gastroLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?address"):::projected
v2("?gastro"):::projected
v1("?gastroLabel"):::projected
c2(["wd:Q88985865"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q2112"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P131"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P6375".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end