query-e5001dfcfa25e5ce6be5319951946ef3
Počet všech Wikidata objektů, které mají více propojení na Archiv výtvarného umění SELECT ?item ?itemLabel ?count WHERE { { SELECT ?item (COUNT(?abart_person_id) AS ?count) { ?item wdt:P6844 ?abart_person_id. } GROUP BY ?item } FILTER(?count > 1) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],cs". } } ORDER BY DESC(?count)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Počet všech Wikidata objektů, které mají více propojení na Archiv výtvarného umění
SELECT ?item ?itemLabel ?count WHERE {
{
SELECT ?item (COUNT(?abart_person_id) AS ?count) {
?item wdt:P6844 ?abart_person_id.
} GROUP BY ?item
}
FILTER(?count > 1)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],cs". }
} ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?abart_person_id")
v4("?count"):::projected
v2("?item"):::projected
c6(["#91;AUTO_LANGUAGE#93;,cs"]):::literal
c4(["bd:serviceParam"]):::iri
f0[["?count > '1^^xsd:integer'"]]
f0 --> v4
v2 --"wdt:P6844"--> v3
bind2[/"count(?abart_person_id)"/]
v3 --o bind2
bind2 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end