Added missing API query filter info

This commit is contained in:
Bernd Bestel 2020-12-11 19:36:29 +01:00
parent 51a95814e0
commit f07a21b00b
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300
2 changed files with 2 additions and 1 deletions

View File

@ -197,6 +197,7 @@
- `<field>` is a field name - `<field>` is a field name
- `<condition>` is a comparison operator, one of - `<condition>` is a comparison operator, one of
- `=` equal - `=` equal
- `!=` not equal
- `~` LIKE - `~` LIKE
- `<` less - `<` less
- `>` greater - `>` greater

View File

@ -5113,7 +5113,7 @@
"in": "query", "in": "query",
"name": "query[]", "name": "query[]",
"required": false, "required": false,
"description": "An array of filter conditions, each of them is a string in the form of `<field><condition><value>` where<br>`<field>` is a valid field name<br>`<condition>` is a comparison operator, one of<br>&nbsp;&nbsp;`=` equal<br>&nbsp;&nbsp;`~` LIKE<br>&nbsp;&nbsp;`<` less<br>&nbsp;&nbsp;`>` greater<br>&nbsp;&nbsp;`<=` less or equal<br>&nbsp;&nbsp;`>=` (reater or equal<br>`<value>` is the value to search for", "description": "An array of filter conditions, each of them is a string in the form of `<field><condition><value>` where<br>`<field>` is a valid field name<br>`<condition>` is a comparison operator, one of<br>&nbsp;&nbsp;`=` equal<br>&nbsp;&nbsp;`!=` not equal<br>&nbsp;&nbsp;`~` LIKE<br>&nbsp;&nbsp;`<` less<br>&nbsp;&nbsp;`>` greater<br>&nbsp;&nbsp;`<=` less or equal<br>&nbsp;&nbsp;`>=` (greater or equal<br>`<value>` is the value to search for",
"schema": { "schema": {
"type": "array", "type": "array",
"items": { "items": {