INPUT_OBJECT
JSONFilter
A filter to be used against JSON fields. All fields are combined with a logical ‘and.’
link GraphQL Schema definition
- input JSONFilter {
- # Is null (if `true` is specified) or is not null (if `false` is specified).
- Boolean :
- # Equal to the specified value.
- JSON :
- # Not equal to the specified value.
- JSON :
- # Not equal to the specified value, treating null like an ordinary value.
- JSON :
- # Equal to the specified value, treating null like an ordinary value.
- JSON :
- # Included in the specified list.
- JSON!] : [
- # Not included in the specified list.
- JSON!] : [
- # Less than the specified value.
- JSON :
- # Less than or equal to the specified value.
- JSON :
- # Greater than the specified value.
- JSON :
- # Greater than or equal to the specified value.
- JSON :
- # Contains the specified JSON.
- JSON :
- # Contains the specified key.
- String :
- # Contains all of the specified keys.
- String!] : [
- # Contains any of the specified keys.
- String!] : [
- # Contained by the specified JSON.
- JSON :
- }
link Require by
- ImageFilterA filter to be used against `Image` object types. All fields are combined with a logical ‘and.’
- ModelDeploymentRuleFilterA filter to be used against `ModelDeploymentRule` object types. All fields are combined with a logical ‘and.’
- ModelFilterA filter to be used against `Model` object types. All fields are combined with a logical ‘and.’
- ServerActionFilterA filter to be used against `ServerAction` object types. All fields are combined with a logical ‘and.’
- ServerFilterA filter to be used against `Server` object types. All fields are combined with a logical ‘and.’