query-31dca8d6845e2561dc981b2c7df817bd

rq turtle/ttl

Count of all NAIDs without "level of description" (i.e. likely authorities)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT (COUNT(?records) AS ?count)
WHERE {
  ?records wdt:P1225 ?naid .
  MINUS {?records wdt:P6224 ?level.}
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v3("?level") v2("?naid") v1("?records"):::projected v1 --"wdt:P1225"--> v2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P6224"--> v3 end bind2[/"count(?records)"/] v1 --o bind2 bind2 --as--o v4