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 SOQL query (based on a criteria query)
SELECT DISTINCT x FROM X x WHERE x.stove.id = :generatedName0 AND x.hub.id = :generatedName1 AND x.id = :generatedName2
is translated to the following SPARQL:
SELECT DISTINCT ?generatedName2 WHERE { ?generatedName2 a <http://example.org/type> . ?generatedName2 <http://example.org/properties/stove> ?generatedName0 . ?generatedName2 <http://example.org/properties/hub> ?generatedName2 . }
which is incorrect and results later in the following error:
java.lang.IllegalArgumentException: Parameter 'generatedName1' does not exist in this query.
The text was updated successfully, but these errors were encountered:
[Bug #234] Fix an issue with using entity id comparison after attribu…
23defc8
…te referencing another entity in SOQL query.
5e01614
Successfully merging a pull request may close this issue.
The following SOQL query (based on a criteria query)
is translated to the following SPARQL:
which is incorrect and results later in the following error:
The text was updated successfully, but these errors were encountered: