query-edb8d6509886bb703e1be032d4f5db6a

rq turtle/ttl

Nejčastější důvody zavržení ID

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?duvod_zavrzeniLabel (count(distinct(?nkcr)) as ?count) where {

  ?item p:P691 [ps:P691 ?nkcr ; pq:P2241 ?duvod_zavrzeni ; wikibase:rank wikibase:DeprecatedRank ] .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "cs,en". }
}
group by ?duvod_zavrzeniLabel order by desc(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v3("?duvod_zavrzeni") v4("?item") v2("?nkcr"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c4(["wikibase:DeprecatedRank"]):::iri c9(["cs,en"]):::literal a1 --"p:statement/P691"--> v2 a1 --"p:qualifier/P2241"--> v3 a1 --"wikibase:rank"--> c4 v4 --"p:P691"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"count(?nkcr)"/] v2 --o bind1 bind1 --as--o v5