query-bdaf5514ca81a854b02b33d954ce9ca9
(P3254)property proposal discussion
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wdno: <http://www.wikidata.org/prop/novalue/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?property ?propertyLabel WHERE {
?property a wikibase:Property . # all properties
MINUS { ?property rdf:type wdno:P3254 } # remove those with "property proposal discussion: no value"
MINUS { ?property wdt:P3254 ?discussion } # remove those with any other "property proposal discussion" claim
SERVICE wikibase:label { bd:serviceParam wikibase:language '[AUTO_LANGUAGE],en' }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?discussion")
v1("?property"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wikibase:Property"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wdno:P3254"]):::iri
v1 --"a"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"a"--> c3
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P3254"--> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end