query-e4e83188f17469885af4627e918e3ded

rq turtle/ttl

]reply[11:05, 29 April 2020 (UTC)) talk (René La contemporaineHi, I'm (once again) struggling with GROUP_CONCAT. I'd like to display a concatenation of my curators (wdt:P1640 - ?commissaires) but I don't get results. Where is my mistake ? Thanks--: I made some slight changes to your query.René La contemporaine@

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 ?expositions ?expositionsLabel ?titre ?date_de_debut ?date_de_fin ?sous_titre ?lieuLabel ?localisation_administrativeLabel (GROUP_CONCAT(?commissaireslabel;separator=", ") AS ?commissaires) 
WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?expositions wdt:P664 wd:Q856640.
  OPTIONAL { ?expositions wdt:P1476 ?titre. }
  OPTIONAL { ?expositions wdt:P580 ?date_de_debut. }
  OPTIONAL { ?expositions wdt:P582 ?date_de_fin. }
  OPTIONAL { ?expositions wdt:P1132 ?nombre_de_participants. }
  ?expositions wdt:P31 wd:Q29023906.
  OPTIONAL { ?expositions wdt:P1680 ?sous_titre. }
  OPTIONAL { ?expositions wdt:P276 ?lieu. }
    OPTIONAL { ?expositions wdt:P131 ?localisation_administrative. }
  OPTIONAL {?expositions wdt:P1640 ?commissaires. ?commissaires rdfs:label ?commissaireslabel . FILTER(LANG(?commissaireslabel)='fr') }
}
GROUP BY ?expositions ?expositionsLabel ?titre ?date_de_debut ?date_de_fin ?sous_titre ?lieuLabel ?localisation_administrativeLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v11("?commissaires") v1("?commissaireslabel"):::projected v4("?date_de_debut"):::projected v5("?date_de_fin"):::projected v2("?expositions"):::projected v8("?lieu") v9("?localisation_administrative") v6("?nombre_de_participants") v7("?sous_titre"):::projected v3("?titre"):::projected c7(["wd:Q856640"]):::iri c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal c13(["wd:Q29023906"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end v2 --"wdt:P664"--> c7 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1476".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P580".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P582".-> v5 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1132".-> v6 end v2 --"wdt:P31"--> c13 subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1680".-> v7 end subgraph optional5["(optional)"] style optional5 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P276".-> v8 end subgraph optional6["(optional)"] style optional6 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P131".-> v9 end subgraph optional7["(optional)"] style optional7 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1640".-> v11 v11 --"rdfs:label"--> v1 end bind1[/"?commissaireslabel"/] v1 --o bind1 bind1 --as--o v11