query-d5be383ce83ea9ee9ed57f75c130d046
P6216 Statements without qualifiers statements require qualifiers to more precisly specify copyright status, so I tried to write a query to catch statements without any queries. I come up with (P6216)copyright status All
Use at
- https://query.wikidata.org/sparql
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item {
?item p:P6216 ?statement .
MINUS {?statement ?pq_qual ?pq_obj }.
} LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v4("?pq_obj")
v3("?pq_qual")
v2("?statement")
v1 --"p:P6216"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 -->v3--> v4
end