Christian Beikov
Christian Beikov
The implementation looks ok to me now, but I'm having a really hard time figuring out what a good implementation for this is in the first place. So far, I...
Yes, that's the idea.
Hi and sorry for taking so long to answer, PTO and sickness held me back. Thanks for reporting this issue. It seems to me that the implementation of JSON path...
It's part of [ORM 7.0](https://docs.jboss.org/hibernate/orm/7.0/userguide/html_single/Hibernate_User_Guide.html#hql-json-value-function) and the `json_value` function is the SQL standard which I opted to implement there. The general behavior of that function is to return a String...
The easiest way to make this work is to define the function like ```java public class JsonContainsFunction implements JpqlFunction { @Override public boolean hasArguments() { return true; } @Override public...
Sorry, but currently this is the easiest/best way that we can offer.
Accessing nested state works by specifying [sub-selectors as arguments](https://persistence.blazebit.com/documentation/core/manual/en_US/index.html#json_get) i.e. `JSON_GET(config, 'nestedNode', 'nestedKey')` will access the nested state. When you want to access arrays, you will have to either specify...
> What should I do in this case? Should I write my own `custom JPQL functions`, or is there an existing solution for this? For now, you will have to...
3) Adding the condition seems to do the trick. Will do some further testing and provide a PR with a fix as soon as I fixed all the issues with...
Thanks. Looks like https://github.com/OpenAPITools/openapi-generator/pull/19781 fixed the problem.