query-47a94722bba1e35cea16639f8bda29b4

rq turtle/ttl

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

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)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?base") v4("?count") v2("?software"):::projected c2(["wd:Q131669"]):::iri c5(["bd:serviceParam"]):::iri c7(["en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P144"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(?software)"/] v2 --o bind1 bind1 --as--o v4