query-1409ad8c54b66ccc55b5276de89f418e

rq turtle/ttl

File Formats1. Return a list of file extensions and their media types ?mediaType ?extension ORDER BY } } "en" language:wikibase serviceParam:bd { label:wikibase SERVICE } ?mediaType P1163:wdt ?idExtension { OPTIONAL . ?extension P1195:wdt ; Q235557:wd P31:wdt ?idExtension { WHERE ?idExtensionLabel ?mediaType ?extension ?idExtension DISTINCT SELECT2. Return a list of file formats that are for 3D graphics:

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 ?format ?formatLabel 

WHERE {

  ?format wdt:P31 wd:Q235557 .
  ?format wdt:P366 wd:Q189177 .

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