query-96d2c7915f36e70830c026e4c686f491

rq turtle/ttl

title: Burgemeesters die een soort gedomesticeerd dier zijn 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

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: Burgemeesters die een soort gedomesticeerd dier zijn
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