query-6fc05d1923a00f4657d7269d12bffd1b

rq turtle/ttl

What to add for indiedb

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
WHERE 
{
  ?item wdt:P136 wd:Q2762504 .
  MINUS { ?item wdt:P6717 ?indiedb } 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?indiedb") v1("?item"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q2762504"]):::iri c7(["en"]):::literal v1 --"wdt:P136"--> c2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P6717"--> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end