query-1cf37c5b089d511bd0ac551ed2f36144
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: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . Q189177:wd P366:wdt ?format . Q235557:wd P31:wdt ?format { WHERE ?formatLabel ?format DISTINCT SELECT 3. Return a list of all items that are an instance of file format:
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 DISTINCT ?fileformat ?fileformatLabel
WHERE
{
?fileformat wdt:P31 wd:Q235557
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("?fileformat"):::projected
c2(["wd:Q235557"]):::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