query-cea95e0953652ad1f93c128b87f4b7f4

rq turtle/ttl

items with nowiki sitelinks but no nb labels SELECT distinct ?item WHERE { ?article schema:about ?item . ?article schema:isPartOf https://no.wikipedia.org/. FILTER NOT EXISTS { ?item rdfs:label ?l . filter ( lang(?l) = "nb" ) } } limit 10

Use at

PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# items with nowiki sitelinks but no nb labels
SELECT distinct ?item 
WHERE {
  ?article schema:about ?item .
  ?article schema:isPartOf <https://no.wikipedia.org/>.
  FILTER NOT EXISTS { ?item rdfs:label ?l . filter ( lang(?l) = "nb" ) }
} limit 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article") v2("?item"):::projected v1("?l") c5([https://no.wikipedia.org/]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?l = 'nb'"]] e0f0 --> e0v1 e0v2 --"rdfs:label"--> e0v1 e0v2("?item"):::projected e0v1("?l"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f1[["?l = 'nb'"]] f1 --> v1 v2 --"rdfs:label"--> v1 v3 --"schema:about"--> v2 v3 --"schema:isPartOf"--> c5