query-4b1ee84248859cb5d611d9d9870d76bf
values used with P548 (version type) qualifiers of P348 (software version) claims SELECT ?value ?valueLabel (COUNT(?value) AS ?cnt) WHERE { ?item ?prop [ pq:P548 ?value ] . SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' } } GROUP BY ?value ?valueLabel ORDER BY DESC(?cnt)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# values used with P548 (version type) qualifiers of P348 (software version) claims
SELECT ?value ?valueLabel (COUNT(?value) AS ?cnt) WHERE {
?item ?prop [ pq:P548 ?value ] .
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
} GROUP BY ?value ?valueLabel ORDER BY DESC(?cnt)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?cnt")
v3("?item")
v4("?prop")
v2("?value"):::projected
a1((" "))
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
a1 --"pq:P548"--> v2
v3 -->v4--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
bind1[/"count(?value)"/]
v2 --o bind1
bind1 --as--o v5