-
Notifications
You must be signed in to change notification settings - Fork 553
New issue
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
Value in json is string, but filter type is number #544
Comments
I'm pretty sure SQL doesn't care if it's a string or an int (I know mysql doesn't for sure). Are you running into an issue? |
I never seen the interest in having the good type in the JSON output, usually you have a backend parser that translate it to a POJO (or same thing in other languages) and do not to worry about types. But it could be done. |
Yes, I hotfixed it with explicitly casting to integer. But it would be nice to have correct type in javascript too :-) Thank you. ps. I do not use it for sql filter of course. I use it as configurator and then save json to database and other service reads it. |
Hi,
I have this queryBuilder
but in exported json the value for filter is always string (quoted number).
Is there any option to change that?
Thanks.
The text was updated successfully, but these errors were encountered: