query-8245dfe10a6f15a34aeb862c24fb041f
Propertiesinstance of (P31)part of (P361)
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 ?p ?prop ?propLabel (count(?item) as ?uses)
WHERE
{
?item wdt:P31 wd:Q838795 ; wdt:P361 wd:Q13915 .
?item ?p ?y .
?prop wikibase:directClaim ?p .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr, en". }
} GROUP BY ?p ?prop ?propLabel ORDER BY DESC(?uses)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?p"):::projected
v5("?prop"):::projected
v6("?uses")
v4("?y")
c9(["fr, en"]):::literal
c7(["bd:serviceParam"]):::iri
c4(["wd:Q13915"]):::iri
c2(["wd:Q838795"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P361"--> c4
v2 -->v3--> v4
v5 --"wikibase:directClaim"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v6