query-47a94722bba1e35cea16639f8bda29b4
Free Software1. Return a list of all items for which there is an entry in the Free Software Foundation Resource Directory } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE .?entry P2537:wdt ?software . Q341:wd P31:wdt ?software { WHERE ?softwareLabel ?software SELECT 2. Return list of all instances of free software that have been described with a MIME type: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE ?mime P1163:wdt ?software .Q341:wd P31:wdt ?software { WHERE ?mime ?softwareLabel ?software SELECT 3. Return a list of all items that are instances of a linux distro: } } ."en" language:wikibase serviceParam:bd { label:wikibase SERVICE .Q131669:wd P31:wdt ?software { WHERE ?softwareLabel ?software SELECT 4. Return a map with the birthplaces of a developers of free software } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE } .?lon geoLongitude:wikibase ?node .?lat geoLatitude:wikibase ?node .?node P625:psv ?statement .?statement P625:p ?birthplace { OPTIONAL } .?coord P625:wdt ?birthplace{ OPTIONAL ?birthplace P19:wdt ?developer . ?developer P178:wdt ?software . Q341:wd P31:wdt ?software { WHERE ?lon ?lat ?coord ?birthplaceLabel ?developerLabel ?softwareLabel ?software SELECT #defaultView:Map 5. Return a list of all free software developers and their dates of birth: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?year P569:wdt ?developer . ?developer P178:wdt ?software . Q341:wd P31:wdt ?software { WHERE ?year ?developerLabel ?softwareLabel DISTINCT SELECT 6. Return a list of all debian packages that have been added to Wikidata: } } "en,en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?value P3442:wdt ?item { WHERE ?itemLabel ?item SELECT 7. Return a list of linux distributions ranked in order of the number of other distros for which they serve as the base:
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 ?baseLabel (COUNT(?software) AS ?count)
WHERE {
?software wdt:P31 wd:Q131669.
?software wdt:P144 ?base .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?base ?baseLabel
ORDER BY DESC(?count)