You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't seem to get a FILTER to work that checks if ?s is present in an array. Note that this is SPARQL 1.1 and I recall that ARC2 doesn't completely implement 1.1.
PREFIX dcterms: <http://purl.org/dc/terms/> .
SELECT *
WHERE {
?s dcterms:type ?o .
FILTER (?s IN ("urn:scalar:version:27560","urn:scalar:version:27559"))
}
Errors:
Array
(
[0] => Incomplete FILTER in ARC2_SPARQLPlusParser
[1] => Incomplete or invalid Group Graph pattern. Could not handle " FILTER (?s IN" in ARC2_SPARQLPlusParser
)
Curious if there's another way to do this or if my syntax is wrong? (Note that I could use a UNION but then I wouldn't be able to return ?s in the results, I don't think.) Thanks!
The text was updated successfully, but these errors were encountered:
Hi all,
I can't seem to get a FILTER to work that checks if ?s is present in an array. Note that this is SPARQL 1.1 and I recall that ARC2 doesn't completely implement 1.1.
Errors:
Array
Curious if there's another way to do this or if my syntax is wrong? (Note that I could use a UNION but then I wouldn't be able to return ?s in the results, I don't think.) Thanks!
The text was updated successfully, but these errors were encountered: