query-ce83c91a037a699089a49f1fc93596a6
Propertiesmedia type (P1163)file extension (P1195)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?format ?formatLabel ?ext WHERE {
?format wdt:P1163 "text/plain";
wdt:P1195 ?ext.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
FILTER(?ext != "txt")
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?ext"):::projected
v2("?format"):::projected
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["text/plain"]):::literal
f0[["?ext != 'txt'"]]
f0 --> v1
v2 --"wdt:P1163"--> c3
v2 --"wdt:P1195"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end