query-0384cd86268708bc850ccc00a82806b9
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?s ?sLabel
WHERE
{
?s wdt:P31 wd:Q4184;
rdfs:label ?sLabel.
?prop wikibase:directClaim ?p
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;
v4("?p")
v3("?prop")
v1("?s"):::projected
v2("?sLabel"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q4184"]):::iri
c8(["en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"rdfs:label"--> v2
v3 --"wikibase:directClaim"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end