Name | Type | Description | Notes |
---|---|---|---|
eq | string | Equal filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify a refutation game status to get items where the specified field is equal to the specified value. Example: `?gameStatus=draw`. | [optional] |
ne | string | Not equal filter mode. \ Specify a refutation game status to get items where the specified field is not equal to the specified value. Example: `?gameStatus.ne=ongoing`. | [optional] |
in | string[] | In list (any of) filter mode. \ Specify a comma-separated list of refutation game statuses to get items where the specified field is equal to one of the specified values. Example: `?gameStatus.in=loser,draw`. | [optional] |
ni | string[] | Not in list (none of) filter mode. \ Specify a comma-separated list of refutation game statuses to get items where the specified field is not equal to all the specified values. Example: `?gameStatus.ni=loser,draw`. | [optional] |