Обнаружено "" <"" <"" в строке 1, столбец 15. Ожидалось: <IRIref> - PullRequest
0 голосов
/ 14 ноября 2018

Попытка использовать запрос в конечной точке. Запрос создан в SPARQL. Ошибка приходит как

Encountered " "<" "< "" at line 1, column 15.
Was expecting:
    <IRIref> ...

Запрос:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT ?Class ?Title ?Definition
WHERE {
?Value rdfs:label ?Class
FILTER regex(?Class, "Motion") .
?def rdfs:domain ?Value .
?def rdfs:label ?Title .
?def rdfs:comment ?Definition}

URL

http://localhost:3030/skosmos/query?query=
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?Class ?Title ?Definition
WHERE {
    ?Value rdfs:label ?Class
    FILTER regex(?Class, "Motion") .
    ?def rdfs:domain ?Value .
    ?def rdfs:label ?Title .
    ?def rdfs:comment ?Definition
}

1 Ответ

0 голосов
...