"Invalid keys" for Named Querie on Json format

I making a custom property "data" and I binding Named Query to it,

When the return format is json I got a lot of "Invalid keys" warning.

I should use this way so later i can filter it with checkboxes

image

Invalid keys warnings:

It means your column names aren't valid JSON identifiers, so you get invalid json when specifying json return format.

Change the column names your query returns to conform. For best results, make them have only letters, digits, and underscores, and not start with a digit. No spaces, no other punctuation.

1 Like