query-52d5040c9646441edfb263cbd5e6327a

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:

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 ?software ?softwareLabel 

WHERE {
  ?software wdt:P31 wd:Q131669.

  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; v1("?software"):::projected c2(["wd:Q131669"]):::iri c4(["bd:serviceParam"]):::iri c6(["en"]):::literal v1 --"wdt:P31"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end