query-dd04f1216396bd637c0dfa01f957e673

rq turtle/ttl

None with the combination of platform + publication date + place of publication. 59 with combination of platform + publication date Advantages: Disadvantages: --- B) publication date (P577) with qualifieradd value add reference 0 references PlayStation 4 Limited Pack P??? (Q17)Japan (P291)place of publication (Q5014725)PlayStation 4 (P400)platform edit 2 September 2015 add reference 0 references (Q458)European Union (Q30)United States of America (P291)place of publication (Q48263)Xbox 360 (Q5014725)PlayStation 4 (P400)platform edit 1 September 2015 (P577)publication date etv (Q214232)Final Fantasy VII , (Q76255)Call of Duty 4: Modern Warfare Example:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?entity ?entityLabel ?releaseDateItem ?platformLabel ?placeLabel
WHERE {
  ?entity wdt:P31 wd:Q7889.
  ?entity p:P577 ?releaseDate.
  ?releaseDate ps:P577 ?releaseDateItem.
  ?releaseDate pq:P400 ?platform. 
  ?releaseDate pq:P291 ?place. 
  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; v1("?entity"):::projected v5("?place") v4("?platform") v2("?releaseDate") v3("?releaseDateItem"):::projected c8(["bd:serviceParam"]):::iri c2(["wd:Q7889"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"p:direct/P31"--> c2 v1 --"p:P577"--> v2 v2 --"p:statement/P577"--> v3 v2 --"p:qualifier/P400"--> v4 v2 --"p:qualifier/P291"--> v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end