query-c0707c08992eb31a8161f8fb89e45e4b

rq turtle/ttl

Graffiti artistsHi, I'm looking for all graffiti sprayers without known identity. So far I used this query to get all graffiti artists (don't know why I get everything in German):

Use at

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 ?Beruf ?offizieller_Name ?BerufLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?Beruf wdt:P106 wd:Q15095148.
  OPTIONAL { ?Beruf wdt:P1448 ?offizieller_Name. }
  ?Beruf wdt:P31 wd:Q5.
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?Beruf"):::projected v2("?offizieller_Name"):::projected c2(["bd:serviceParam"]):::iri c9(["wd:Q5"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6(["wd:Q15095148"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P106"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1448".-> v2 end v1 --"wdt:P31"--> c9