You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found the issue with query generating by generated code. We are using Symfony 6 + Api Platform 2.6 for backend and angular with mst-gql for frontend. We're using soft delete functionality so in order to filter out results from query we have implemented "Exists" filter.
Hi
I've found the issue with query generating by generated code. We are using Symfony 6 + Api Platform 2.6 for backend and angular with mst-gql for frontend. We're using soft delete functionality so in order to filter out results from query we have implemented "Exists" filter.
Generated selector:
The generated code produces query like:
Instead of:
The reason of this is the part with JSON.stringify:
My solution is to substitute it with a method wich converts complex objects into queryable string without escaping object keys:
Is there any other way to avoid this issue?
The text was updated successfully, but these errors were encountered: