query-c5e458bb216ea6258f58762a045ae0ce
Properties with missing instance of (P31) claim
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?property ?propertyLabel ?propertyDescription ?propertyType {
?property wikibase:propertyType ?propertyType .
MINUS { ?property wdt:P31 [] } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?property"):::projected
v2("?propertyType"):::projected
a1((" "))
c4(["bd:serviceParam"]):::iri
c6(["en,en"]):::literal
v1 --"wikibase:propertyType"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P31"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end