query-3055a6aff8844ed4c75e5dcff3c48dd9

rq turtle/ttl

List podcasts without episode counts

Use at

PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item WHERE {
      ?item p:P31 ?statement0.
      ?statement0 (ps:P31) wd:Q24634210.
      MINUS {
        ?item p:P1113 ?statement1.
        ?statement1 (ps:P1113) _:anyValueP1113.
      }
    }
    LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?statement0") v3("?statement1") a1((" ")) c3(["wd:Q24634210"]):::iri v1 --"p:P31"--> v2 v2 --"p:statement/P31"--> c3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"p:P1113"--> v3 v3 --"p:statement/P1113"--> a1 end