query-f808d3f667570469f39ddfa831b72362
Uso de la propiedad P941 Inspirado porLas subclases directas de "Obra escrita" son Libro, Serie de libros y Obra literaria (y tambiƩn, pero sin resultados en este caso, Texto). Con esta consulta se obtienen 89 resultados
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(?cosa) AS ?count)
WHERE {
?item wdt:P941 ?cosa .
?item wdt:P31 ?tipo .
?tipo wdt:P279 wd:Q47461344
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en" }
}
GROUP BY ?tipo ?tipoLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?cosa"):::projected
v4("?count")
v1("?item")
v3("?tipo"):::projected
c6(["bd:serviceParam"]):::iri
c8(["es,en"]):::literal
c4(["wd:Q47461344"]):::iri
v1 --"wdt:P941"--> v2
v1 --"wdt:P31"--> v3
v3 --"wdt:P279"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(?cosa)"/]
v2 --o bind1
bind1 --as--o v4