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
Description
I am using react-awesome-query-builder to create a query to fetch users with paymentStatus = 'Refunded' stored in a nested JSON column lastOrder. The configuration uses !struct for nested objects.
However, the generated SQL query is incorrect:.
lastOrder.paymentStatus = 'Refunded';
This SQL query does not work as expected with JSON columns.
Description
I am using react-awesome-query-builder to create a query to fetch users with paymentStatus = 'Refunded' stored in a nested JSON column lastOrder. The configuration uses !struct for nested objects.
However, the generated SQL query is incorrect:.
This SQL query does not work as expected with JSON columns.
Steps to reproduce
Example JSON Tree:
This is how the JSON tree looks
Expected Behavior:
The generated SQL query should correctly handle the nested JSON field:
Current Behavior:
The generated SQL query is:
The text was updated successfully, but these errors were encountered: