Name | Type | Description | Notes |
---|---|---|---|
eq | string | Equal filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify an src1-hash to get items where the specified field is equal to the specified value. Example: `?hash=src1qwe...`. | [optional] |
ne | string | Not equal filter mode. \ Specify an src1-hash to get items where the specified field is not equal to the specified value. Example: `?hash.ne=src1qwe...`. | [optional] |
in | string[] | In list (any of) filter mode. \ Specify a comma-separated list of src1-hashes to get items where the specified field is equal to one of the specified values. Example: `?hash.in=hash1,hash2,hash3`. | [optional] |
ni | string[] | Not in list (none of) filter mode. \ Specify a comma-separated list of src1-hashes to get items where the specified field is not equal to all the specified values. Example: `?hash.ni=hash1,hash2,hash3`. | [optional] |