query-8d9d90359f2bbe9ff4e0f967bcf76b87
Concurrencia de propiedadesPara conocer la frecuencia con la que se declara otro rdf:type. Se interroga por el principal, y luego se extraen todas las variantes de 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 ?tipo ?tipoLabel (COUNT(?tipo) AS ?count) WHERE {
?item wdt:P31 wd:Q7725634 .
?item wdt:P31 ?tipo .
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en" }
}
Group by ?tipo ?tipoLabel
Order by ?count
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v2("?item")
v3("?tipo"):::projected
c4(["bd:serviceParam"]):::iri
c6(["es,en"]):::literal
c2(["wd:Q7725634"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P31"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind1[/"count(?tipo)"/]
v3 --o bind1
bind1 --as--o v4