We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b44bc08 commit 7052774Copy full SHA for 7052774
docs/filtering.rst
@@ -76,31 +76,29 @@ You can also use boolean combination of operations:
76
"val":"%Amstrad%"
77
},
78
{
79
- "or": {
80
- [
81
- {
82
- "not": {
+ "or": [
+ {
+ "not": {
+ "name": "name",
83
+ "op": "eq",
84
+ "val":"John"
85
+ }
86
+ },
87
88
+ "and": [
89
90
"name": "name",
- "op": "eq",
- "val":"John"
91
+ "op": "like",
92
+ "val": "%Jim%"
93
94
95
+ "name": "birth_date",
96
+ "op": "gt",
97
+ "val": "1990-01-01"
98
}
- },
- "and": [
- "name": "name",
- "op": "like",
- "val": "%Jim%"
- "name": "birth_date",
- "op": "gt",
- "val": "1990-01-01"
99
- }
100
- ]
101
102
103
+ ]
104
105
] HTTP/1.1
106
Accept: application/vnd.api+json
0 commit comments