query-e1dc8299f748487359f11f8de3c407ea

rq turtle/ttl

Created by User:Ranjithsiji

Malayalam films without Malayalam Description in Wikidata

SELECT ?item ?len ?lml ?itemdesc { ?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") } FILTER(NOT EXISTS { ?item schema:description ?itemdesc. FILTER(LANG(?itemdesc) = "ml") # with missing Dutch description }) }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# Created by User:Ranjithsiji
# Malayalam films without Malayalam Description in Wikidata
SELECT ?item ?len ?lml ?itemdesc {
  ?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") }
  FILTER(NOT EXISTS {
    ?item schema:description ?itemdesc.
    FILTER(LANG(?itemdesc) = "ml") # with missing Dutch description
  })
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemdesc"):::projected v3("?len"):::projected c7(["wd:Q36236"]):::iri c5(["wd:Q11424"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?itemdesc = 'ml'"]] e0f0 --> e0v1 e0v2 --"schema:description"--> e0v1 e0v2("?item"):::projected e0v1("?itemdesc"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f1[["?itemdesc = 'ml'"]] f1 --> v1 v2 --"schema:description"--> 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