query-9478b22c59b1a25331579651457fcc21

rq turtle/ttl

06:15, 28 May 2017 (UTC)) talk (SharkD is always empty. This seems to happen with many of the "labels" for other parameters and such. What do I need to change to fix it? propsetFor some reason

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?game (group_concat(distinct str(?gameLabel) ; separator = ",") AS ?propset) WHERE {
    ?game wdt:P31 wd:Q7889;
    wdt:P136 wd:Q744038.
    ?game rdfs:label ?gameLabel
    # SERVICE wikibase:label { bd:serviceParam wikibase:language "en,es,ja,ru". ?game rdfs:label ?gameLabel }
} group by $game

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?game"):::projected v2("?gameLabel"):::projected v3("?propset") c4(["wd:Q744038"]):::iri c2(["wd:Q7889"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P136"--> c4 v1 --"rdfs:label"--> v2 bind1[/"str(?gameLabel)"/] v2 --o bind1 bind1 --as--o v3