query-7e1dd79a13ac7326341a5afb18a5aef7

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:

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 DISTINCT ?softwareLabel ?developerLabel ?year

WHERE {

  ?software wdt:P31 wd:Q341 .
  ?software wdt:P178 ?developer .
  ?developer wdt:P569 ?year .

  SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .

}
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?developer") v1("?software") v3("?year"):::projected c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c2(["wd:Q341"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P178"--> v2 v2 --"wdt:P569"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end