query-53a60d29e1dfc6014a255e93cdb26bf8

rq turtle/ttl

title:items with property P11567 SELECT ?item ?itemLabel ?itemDescription (GROUP_CONCAT(distinct ?value;separator="; ") as ?values) ?statements { { SELECT * { ?item wdt:P11567 ?value . } LIMIT 3000 } ?item wikibase:statements ?statements . hint:Prior hint:runLast true . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?item ?itemLabel ?itemDescription ?statements ORDER BY ?item

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:items with property P11567
SELECT ?item ?itemLabel ?itemDescription (GROUP_CONCAT(distinct ?value;separator="; ") as ?values) ?statements 
{
  {
       SELECT *
       {
          ?item wdt:P11567 ?value .
       }
       LIMIT 3000
  }
  ?item wikibase:statements ?statements . 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} GROUP BY ?item ?itemLabel ?itemDescription ?statements ORDER BY ?item

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v3("?statements"):::projected v2("?value"):::projected v4("?values") c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P11567"--> v2 v1 --"wikibase:statements"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind1[/"?value"/] v2 --o bind1 bind1 --as--o v4