query-1067f7fb79fe3776b39afe34382738ff

rq turtle/ttl

Emulators1. Return a list of all instances of emulator in Wikidata } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . Q202871:wd P31:wdt ?emulator { WHERE ?emulatorLabel ?emulator SELECT 2. Return a list of emulators and what they emulate:

Use at

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 ?emulator ?emulatorLabel ?targetLabel

WHERE {

  ?emulator wdt:P31 wd:Q202871 .
  ?emulator wdt:P4043 ?target          
  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("?emulator"):::projected v2("?target") c5(["bd:serviceParam"]):::iri c2(["wd:Q202871"]):::iri c7(["en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P4043"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end