query-0f185439d930e2d1a1cebdf82790f3ee

rq turtle/ttl

Find items using something that is not a copyright determination method as a determination method SELECT ?item ?itemLabel ?method WHERE { ?item p:P6216 [ pq:P459 ?method ]. MINUS { ?method wdt:P31 wd:Q61005213 }

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Find items using something that is not a copyright determination method as a determination method
SELECT ?item ?itemLabel ?method WHERE {
  ?item p:P6216 [
    pq:P459 ?method
  ].
  MINUS {
    ?method wdt:P31 wd:Q61005213
  }
#   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?method"):::projected a1((" ")) c4(["wd:Q61005213"]):::iri a1 --"p:qualifier/P459"--> v1 v2 --"p:P6216"--> a1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"p:direct/P31"--> c4 end