query-23433a3f82d4e15fd87e1dd16c12ef75
Propriétés sans libellés en français :
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#>
SELECT ?property1 ?property1Label WHERE {
?property1 rdf:type wikibase:Property.
MINUS { ?property1 rdfs:label ?property1Label filter(lang(?property1Label) = "fr") . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?property1"):::projected
v2("?property1Label"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wikibase:Property"]):::iri
c8(["en"]):::literal
v1 --"a"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?property1Label = 'fr'"]]
f1 --> v2
v1 --"rdfs:label"--> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end