query-77d36fb165a75d5f29e8a0671b2ec47b

rq turtle/ttl

membres de l'ACD avec le label, la nature, la description. SELECT DISTINCT ?item ?itemLabel (GROUP_CONCAT(distinct ?natures; SEPARATOR=", ") AS ?nature) ?descriptionLabel WHERE { ?item wdt:P31 ?nature ; rdfs:label ?itemLabel ; schema:description ?description ; wdt:P463 wd:Q71859269 ; wdt:P463 ?membre . ?nature rdfs:label ?natures . FILTER(LANG(?itemLabel) IN ("fr")). FILTER(LANG(?natures) IN ("fr")). FILTER(LANG(?description) IN ("fr")). } group by ?item ?itemLabel ?descriptionLabel

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#membres de l'ACD avec le label, la nature, la description.
SELECT DISTINCT ?item ?itemLabel (GROUP_CONCAT(distinct ?natures; SEPARATOR=", ") AS ?nature) ?descriptionLabel WHERE {
  ?item wdt:P31 ?nature ;
        rdfs:label ?itemLabel ;
        schema:description ?description ;
        wdt:P463 wd:Q71859269 ;
        wdt:P463 ?membre .
  ?nature rdfs:label ?natures .
  FILTER(LANG(?itemLabel) IN ("fr")).
  FILTER(LANG(?natures) IN ("fr")).
  FILTER(LANG(?description) IN ("fr")).
} group by ?item ?itemLabel ?descriptionLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?description") v4("?item"):::projected v3("?itemLabel"):::projected v6("?membre") v7("?nature") v2("?natures"):::projected c6(["wd:Q71859269"]):::iri f0[["?description = 'fr'"]] f0 --> v1 f1[["?natures = 'fr'"]] f1 --> v2 f2[["?itemLabel = 'fr'"]] f2 --> v3 v4 --"wdt:P31"--> v7 v4 --"rdfs:label"--> v3 v4 --"schema:description"--> v1 v4 --"wdt:P463"--> c6 v4 --"wdt:P463"--> v6 v7 --"rdfs:label"--> v2 bind4[/"?natures"/] v2 --o bind4 bind4 --as--o v7