Name | Type | Description | Notes |
---|---|---|---|
eq | string | Equal filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a value to get items where the specified field is equal to the specified value. Example: `?vote=yay`. | [optional] |
ne | string | Not equal filter mode. \ Specify a value to get items where the specified field is not equal to the specified value. Example: `?vote.ne=pass`. | [optional] |
in | string[] | In list (any of) filter mode. \ Specify a comma-separated list of values to get items where the specified field is equal to one of the specified values. Example: `?vote.in=yay,nay`. | [optional] |
ni | string[] | Not in list (none of) filter mode. \ Specify a comma-separated list of values to get items where the specified field is not equal to all the specified values. Example: `?vote.ni=yay,nay`. | [optional] |