query-19ad7c974a93b765e874b14364892ae7
by Csisc, 2019-06-27 SELECT ?item ?itemLabel WHERE { ?item rdf:type wikibase:Property . OPTIONAL {?item rdfs:label ?label1 filter(lang(?label1) = "ar")} FILTER(!BOUND(?label1))
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr" }
} LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#by Csisc, 2019-06-27
SELECT ?item ?itemLabel
WHERE
{
?item rdf:type wikibase:Property .
OPTIONAL {?item rdfs:label ?label1 filter(lang(?label1) = "ar")}
FILTER(!BOUND(?label1))
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr" }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?label1")
c6(["bd:serviceParam"]):::iri
c3(["wikibase:Property"]):::iri
c8(["en,fr"]):::literal
f0[["not bound(?label1)"]]
f0 --> v1
v2 --"a"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end