We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be pretty cool to be able to filter the JSON.
The challenge with JSON is it could be infinitely nested.
{ "facilities": { "room_1": { "microphone": true } } }
So If you wanted to filter this the UI would have to let you specify that facilities -> room_1 -> microphone == true.
facilities -> room_1 -> microphone == true
The query that gets submitted to Piccolo API would have to be some kind of JSON payload like:
{ "path": ["facilities", "room_1", "microphone"], "value": true }
This is what the UI could potentially look like:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be pretty cool to be able to filter the JSON.
The challenge with JSON is it could be infinitely nested.
So If you wanted to filter this the UI would have to let you specify that
facilities -> room_1 -> microphone == true
.The query that gets submitted to Piccolo API would have to be some kind of JSON payload like:
This is what the UI could potentially look like:
The text was updated successfully, but these errors were encountered: