query-867f4ee7a2a600d9eb8eac5f6813d3f8
OS SELECT ?product ?productLabel ?productType WHERE { VALUES ?product { wd:Q1406 wd:Q14116 wd:Q48493 wd:Q94 }. # macOS, Windows, iOS, Android BIND(IF(?product wdt:P31 wd:Q920890, "MobileOS", "DesktopOS") AS ?productType) # if instance of mobileOS... SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
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#>
#OS
SELECT ?product ?productLabel ?productType
WHERE
{
VALUES ?product { wd:Q1406 wd:Q14116 wd:Q48493 wd:Q94 }. # macOS, Windows, iOS, Android
BIND(IF(?product wdt:P31 wd:Q920890, "MobileOS", "DesktopOS") AS ?productType) # if instance of mobileOS...
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}