query-87183e98a3e3efabb69758772b63be09
Readable & Writable File Format1. Return the names of all of the writable file formats that have been described for instances of software applications in Wikidata:
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 ?software ?softwareLabel ?writableffLabel
WHERE {
?software wdt:P31/wdt:P279* wd:Q166142 .
?software wdt:P1073 ?writableff .
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
v2("?writableff")
a1((" "))
c6(["bd:serviceParam"]):::iri
c3(["wd:Q166142"]):::iri
c8(["en"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P1073"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end