query-8b4629a919556ae24ce51c11ec4b2571
Propertiesinstance of (P31)operating system (P306)copyright license (P275)logo image (P154)
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 ?app ?appLabel ?osLabel ?licLabel ?image WHERE {
?app wdt:P31 wd:Q498267.
?app wdt:P306 ?os.
?app wdt:P275 ?lic.
?app wdt:P154 ?image.
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("?app"):::projected
v4("?image"):::projected
v3("?lic")
v2("?os")
c2(["wd:Q498267"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P306"--> v2
v1 --"wdt:P275"--> v3
v1 --"wdt:P154"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end