We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following query returns no results when using Criteria API
final CriteriaQuery<OWLClassD> query = cb.createQuery(OWLClassD.class); final Root<OWLClassD> root = query.from(OWLClassD.class); query.select(root).where( cb.equal(root.getAttr("owlClassA").getAttr("stringAttribute"), instance.getOwlClassA().getStringAttribute(), "en"), cb.equal(root.getAttr("uri"), instance.getUri()));
and generates an incorrect SPARQL query. When the where condition elements are reversed, the query correctly returns the matching result.
The text was updated successfully, but these errors were encountered:
[Bug #178] Add test reproducing the issue.
f25c67d
[Bug #178] Fix an issue with commutativity of and operator when using…
eb459e4
… selection by identifier in SOQL.
Successfully merging a pull request may close this issue.
The following query returns no results when using Criteria API
and generates an incorrect SPARQL query. When the where condition elements are reversed, the query correctly returns the matching result.
The text was updated successfully, but these errors were encountered: