WARIDATA SPARQL запрос с меткой не работает - PullRequest
0 голосов
/ 30 ноября 2018

Я не могу понять, почему с помощью этого запроса я не могу получить метки движения и жанра:

SELECT DISTINCT ?item ?itemLabel ?value ?inception ?creatorLabel ?image
                 (group_concat(?genreLabel; separator=", ") AS ?genres)
                 (group_concat(?movementLabel; separator=", ") AS ?movements)
WHERE {
  ?item wdt:P4610 ?value;
        wdt:P18 ?image.  #with an image
  OPTIONAL { ?item wdt:P571 ?inception; #optionally with creationdate
            wdt:P170 ?creator; #Optionally with creator
            wdt:P136 ?genre;
            wdt:P135 ?movement.
           }

  SERVICE wikibase:label { bd:serviceParam wikibase:language "it,[AUTO_LANGUAGE]"}
} GROUP BY ?item ?itemLabel ?image ?value ?inception ?creatorLabel
ORDER BY ?item

Я пробовал во многих отношениях, но кажется, что это всегда неправильно.

...