query-27b5bdfa2cc38ae13b3e1a399ee69bcb
title: Borgmästare som är en sorts husdjur SELECT ?image ?speciesLabel ?mayorLabel ?placeLabel WHERE { ?species wdt:P279* wd:Q622852 . ?mayor wdt:P31 ?species .
?mayor p:P39 ?node . ?node ps:P39 wd:Q30185 . ?node pq:P642 ?place . OPTIONAL {?mayor wdt:P18 ?image} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". } }
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Borgmästare som är en sorts husdjur
SELECT ?image ?speciesLabel ?mayorLabel ?placeLabel WHERE {
?species wdt:P279* wd:Q622852 .
?mayor wdt:P31 ?species .
?mayor p:P39 ?node .
?node ps:P39 wd:Q30185 .
?node pq:P642 ?place .
OPTIONAL {?mayor wdt:P18 ?image}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?image"):::projected
v2("?mayor")
v3("?node")
v4("?place")
v1("?species")
c10(["bd:serviceParam"]):::iri
c6(["wd:Q30185"]):::iri
c2(["wd:Q622852"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal
v1 --"p:direct/P279"--> c2
v2 --"p:direct/P31"--> v1
v2 --"p:P39"--> v3
v3 --"p:statement/P39"--> c6
v3 --"p:qualifier/P642"--> v4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P18".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end