query-e6bbbf6a7cba439efb2ea7dc6d369841

rq turtle/ttl

Chapters without Spanish description

Capítulos sin descripción en español

PREFIX schema: http://schema.org/

SELECT ?item ?itemLabel ?desc WHERE { ?item wdt:P31 wd:Q1980247 .

FILTER NOT EXISTS { ?item schema:description ?desc filter (lang(?namePropertyES) = "es") . }

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

LIMIT 2000

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Chapters without Spanish description
# Capítulos sin descripción en español

PREFIX schema: <http://schema.org/>

SELECT ?item ?itemLabel ?desc WHERE {
  ?item wdt:P31 wd:Q1980247 .

  FILTER NOT EXISTS { ?item schema:description ?desc filter (lang(?namePropertyES) = "es") . }

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

LIMIT 2000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?desc"):::projected v2("?item"):::projected v1("?namePropertyES") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["wd:Q1980247"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?namePropertyES = 'es'"]] e0f0 --> e0v1 e0v2 --"schema:description"--> e0v3 e0v3("?desc"):::projected e0v2("?item"):::projected e0v1("?namePropertyES"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f0 --> v3 f1[["?namePropertyES = 'es'"]] f1 --> v1 v2 --"schema:description"--> v3 v2 --"wdt:P31"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end