query-dc97b8d166c532849ab145f41d92b05d
Properties without description in Spanish
SELECT ?property ?propertyLabel ?propertyDescription WHERE { ?property rdf:type wikibase:Property . FILTER NOT EXISTS { ?property schema:description ?namePropertyES filter (lang(?namePropertyES) = "es")}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?property
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Properties without description in Spanish
SELECT ?property ?propertyLabel ?propertyDescription
WHERE
{
?property rdf:type wikibase:Property .
FILTER NOT EXISTS { ?property schema:description ?namePropertyES filter (lang(?namePropertyES) = "es")}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?property
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?namePropertyES")
v1("?property"):::projected
c6(["bd:serviceParam"]):::iri
c4(["wikibase:Property"]):::iri
c8(["en"]):::literal
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0f0[["?namePropertyES = 'es'"]]
e0f0 --> e0v1
e0v2 --"schema:description"--> e0v1
e0v1("?namePropertyES"):::projected
e0v2("?property"):::projected
end
f0--EXISTS--> f0e0
f0 --> v2
f0 --> v1
f0 --> c2
f1[["?namePropertyES = 'es'"]]
f1 --> v2
v1 --"schema:description"--> v2
v1 --"a"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end