query-3c0b4abdb793d3dcbed45734e300ed37

rq turtle/ttl

Created by User:Gnoeee

Malayalam films without Malayalam labels in Wikidata

SELECT ?item ?len ?lml { ?item wdt:P31 wd:Q11424. ?item wdt:P364 wd:Q36236 OPTIONAL { ?item rdfs:label ?len. FILTER(LANG(?len)="en") } FILTER NOT EXISTS { ?item rdfs:label ?lml. FILTER(LANG(?lml)="ml") } }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# Created by User:Gnoeee
# Malayalam films without Malayalam labels in Wikidata
SELECT ?item ?len ?lml {
  ?item wdt:P31 wd:Q11424.
  ?item wdt:P364 wd:Q36236
  OPTIONAL { ?item rdfs:label ?len. FILTER(LANG(?len)="en") }
  FILTER NOT EXISTS { ?item rdfs:label ?lml. FILTER(LANG(?lml)="ml") }
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?len"):::projected v1("?lml"):::projected c7(["wd:Q36236"]):::iri c5(["wd:Q11424"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?lml = 'ml'"]] e0f0 --> e0v1 e0v2 --"rdfs:label"--> e0v1 e0v2("?item"):::projected e0v1("?lml"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f1[["?lml = 'ml'"]] f1 --> v1 v2 --"rdfs:label"--> v1 v2 --"wdt:P31"--> c5 v2 --"wdt:P364"--> c7 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."rdfs:label".-> v3 end