query-b9166902017237d9c19198b385b5da90
TODO
Use at
- https://query.wikidata.org/sparql
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#>
SELECT distinct ?item ?itemLabel {
?item wdt:P6216 wd:Q19652 .# copyright status = public domain
?item p:P6216 ?statement .
?statement ?p ?q .
FILTER NOT EXISTS { ?statement pq:P1001 ?j }
FILTER NOT EXISTS { ?statement pq:P459 ?d }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?d")
v4("?item"):::projected
v3("?j")
v5("?p")
v6("?q")
v1("?statement")
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c4(["wd:Q19652"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"p:qualifier/P459"--> e0v2
e0v2("?d"):::projected
e0v1("?statement"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"p:qualifier/P459"--> v2
f1[["not "]]
subgraph f1e1["Exists Clause"]
e1v1 --"p:qualifier/P1001"--> e1v2
e1v2("?j"):::projected
e1v1("?statement"):::projected
end
f1--EXISTS--> f1e1
f1 --> v1
f1 --> c2
f1 --> v3
v1 --"p:qualifier/P1001"--> v3
v4 --"p:direct/P6216"--> c4
v4 --"p:P6216"--> v1
v1 -->v5--> v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end