query-c34372adbbc6492d2b47c0ce5087b2b6
Propertiesinstance of (P31)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?propLabel ?p
WHERE {
?s wdt:P31 wd:Q7075 .
OPTIONAL {
?s ?p ?o .
}
?prop wikibase:directClaim ?p .
FILTER (STRSTARTS(STR(?p), STR(wdt:)))
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?propLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?o")
v2("?p"):::projected
v5("?prop")
v1("?propLabel"):::projected
v3("?s")
c3(["wd:Q7075"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
f0[["starts-with(str(?p),str('wdt:'))"]]
f0 --> v2
v3 --"wdt:P31"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -->v2--> v4
end
v5 -."wikibase:directClaim".-> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end