-
Notifications
You must be signed in to change notification settings - Fork 64
Query for nested property causes wrong param identifier in query #221
Comments
@jannhendrik |
* For nested query with DocumentQuery, replace user.name to user_name. Signed-off-by: Pan Li <[email protected]>
* For nested query with DocumentQuery, replace user.name to user_name. Signed-off-by: Pan Li <[email protected]>
Hi,
`class User { class Person { |
@kweheliye |
I'm not on my deskright now, but I think 2.0.5 with spring boot 2.0.2.RELEASE. However I was able to fetch the child object or the nested object only by passing the nested object as parameter along with the nested object's properties fully populated. So passing object who it's properties partially filled in will return empty. Is there a workaround while the issue is being fixed ? |
@kweheliye the 2.0.5 version may not contains that fix, it merged into master at 11 Oct. And 3.0.0.M1 is migrate to new SDK branch out early Oct also missed that fix. We would like to release new version like for this. |
For
the following query is generated.
"SELECT * FROM ROOT r WHERE r.person.birthdatetime > @person.birthdatetime "
Which throws an exception because paramter names 'must conform to @ followed by a valid identifier'.
The text was updated successfully, but these errors were encountered: