In SPARQL, Data can be directly written in a graph pattern or added to a query using VALUES:
SELECT ...
WHERE {
VALUES ?l {"no" "neg"}
?a delph:hasLemma ?l.
}
In Jena, I found the listContains(?l, ?x)
in https://jena.apache.org/documentation/inference/index.html#RULEbuiltins. But how to use it? How to provide a list of values to check if a given object of a triple is in that list?
listContains
is not part of SPARQL.list:member
maybe what you are looking for.https://jena.apache.org/documentation/query/library-propfunc.html
It is equivalent to
or