query-30d41955119bf23bb600054c67c3f75c

rq turtle/ttl

What to add for tads

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 ?item ?itemLabel ?tads where
{
  ?item wdt:P136 wd:Q1143118 .
  ?item wdt:P31 wd:Q7889 .
  OPTIONAL { ?item wdt:P6748 ?tads }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO],en" }
}
ORDER BY ?tads

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?tads"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q1143118"]):::iri c4(["wd:Q7889"]):::iri c9(["#91;AUTO#93;,en"]):::literal v2 --"wdt:P136"--> c2 v2 --"wdt:P31"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P6748".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end