query-f0c36e1b1667abafcc6a7fbd30b7ab17
List of all NARA series descriptions without a location
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?naid ?Qid WHERE {
?item wdt:P1225 ?naid.
?item wdt:P6224 wd:Q3511132.
MINUS { ?item wdt:P276 ?location. }
BIND(SUBSTR(STR(?item), 32 ) AS ?Qid)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?Qid"):::projected
v1("?item")
v3("?location")
v2("?naid"):::projected
c3(["wd:Q3511132"]):::iri
v1 --"wdt:P1225"--> v2
v1 --"wdt:P6224"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P276"--> v3
end
bind1[/"substring(str(?item),'32^^xsd:integer')"/]
v1 --o bind1
bind1 --as--o v4