Skip to content

Instantly share code, notes, and snippets.

@coco98
Created December 14, 2018 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coco98/d2c8996a6d189c9a936c166d9d0456e7 to your computer and use it in GitHub Desktop.
Save coco98/d2c8996a6d189c9a936c166d9d0456e7 to your computer and use it in GitHub Desktop.
// Boolean expression for a column
"column": {
"_eq": "value",
"_gt": "value"
}
// AND expression
"and": {
"column1": {...},
"column2": {...},
"column3": {...}
}
// OR expression
"or": {
"column1": {...},
"column2": {...},
"column3": {...}
}
// NOT expression
"not": { "column1": {...} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment