query-c466ee76248d105054117156f320b006

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?article ?sitelink ?platform ?group ?language
WHERE 
{
  VALUES ?item {wd:Q155164} 
  ?article schema:about ?item ;
           schema:isPartOf ?platform ; 
           schema:name ?sitelink ;
           schema:inLanguage ?language .
  ?platform wikibase:wikiGroup ?group .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } 
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v6("?group"):::projected v1("?item"):::projected v5("?language"):::projected v3("?platform"):::projected v4("?sitelink"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal bind0[/VALUES ?item/] bind0-->v1 bind00(["wd:Q155164"]) bind00 --> bind0 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> v3 v2 --"schema:name"--> v4 v2 --"schema:inLanguage"--> v5 v3 --"wikibase:wikiGroup"--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end