query-0f76a7fdcc9f5cf718983fcf7479c1f9
Readable & Writable File Format1. Return the names of all of the writable file formats that have been described for instances of software applications in Wikidata: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?writableff P1073:wdt ?software . Q166142:wd P279:wdt/P31:wdt ?software { WHERE ?writableffLabel ?softwareLabel ?software SELECT 2.Return the names of all of the readable file formats that have been described for instances of software applications in Wikidata: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?readableff P1072:wdt ?software . Q166142:wd 279P/P31:wdt ?software { WHERE ?readableffLabel ?softwareLabel ?software SELECT 3. Return a list of software applications ranked in descending order by the number of writable file formats that have been listed in Wikidata:
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT ?app ?appLabel (COUNT(?format) AS ?count)
WHERE {
?app (p:P31/ps:P31/wdt:P279*) wd:Q7397 .
?app wdt:P1073 ?format .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
GROUP BY ?app ?appLabel
ORDER BY DESC(?count)