I have a quite simple query to find all the museums (museum, abstract) that have at least 1 artwork.
It works fine.
I would like to have the Abstract in various languages... how can i solve it?
Here the very simple query:
SELECT ?museum ?abstract WHERE {
?museum <http://dbpedia.org/ontology/abstract> ?abstract.
?museum a <http://dbpedia.org/ontology/Museum>.
?artwork <http://dbpedia.org/ontology/location> ?museum.
}
Now the result is :
NameX -- Description in Italian
i would like to have:
NameX -- Description in Italian -- Decription in English -- Decription in french -- Decription in deutsch
Thanks all
Maurizio