INPUT_OBJECT
StringFilter
A filter to be used against String fields. All fields are combined with a logical ‘and.’
link GraphQL Schema definition
- input StringFilter {
- # Is null (if `true` is specified) or is not null (if `false` is specified).
- Boolean :
- # Equal to the specified value.
- String :
- # Not equal to the specified value.
- String :
- # Not equal to the specified value, treating null like an ordinary value.
- String :
- # Equal to the specified value, treating null like an ordinary value.
- String :
- # Included in the specified list.
- String!] : [
- # Not included in the specified list.
- String!] : [
- # Less than the specified value.
- String :
- # Less than or equal to the specified value.
- String :
- # Greater than the specified value.
- String :
- # Greater than or equal to the specified value.
- String :
- # Contains the specified string (case-sensitive).
- String :
- # Does not contain the specified string (case-sensitive).
- String :
- # Contains the specified string (case-insensitive).
- String :
- # Does not contain the specified string (case-insensitive).
- String :
- # Starts with the specified string (case-sensitive).
- String :
- # Does not start with the specified string (case-sensitive).
- String :
- # Starts with the specified string (case-insensitive).
- String :
- # Does not start with the specified string (case-insensitive).
- String :
- # Ends with the specified string (case-sensitive).
- String :
- # Does not end with the specified string (case-sensitive).
- String :
- # Ends with the specified string (case-insensitive).
- String :
- # Does not end with the specified string (case-insensitive).
- String :
- # Matches the specified pattern (case-sensitive). An underscore (_) matches any
- # single character; a percent sign (%) matches any sequence of zero or more
- # characters.
- String :
- # Does not match the specified pattern (case-sensitive). An underscore (_) matches
- # any single character; a percent sign (%) matches any sequence of zero or more
- # characters.
- String :
- # Matches the specified pattern (case-insensitive). An underscore (_) matches any
- # single character; a percent sign (%) matches any sequence of zero or more
- # characters.
- String :
- # Does not match the specified pattern (case-insensitive). An underscore (_)
- # matches any single character; a percent sign (%) matches any sequence of zero or
- # more characters.
- String :
- # Equal to the specified value (case-insensitive).
- String :
- # Not equal to the specified value (case-insensitive).
- String :
- # Not equal to the specified value, treating null like an ordinary value
- # (case-insensitive).
- String :
- # Equal to the specified value, treating null like an ordinary value
- # (case-insensitive).
- String :
- # Included in the specified list (case-insensitive).
- String!] : [
- # Not included in the specified list (case-insensitive).
- String!] : [
- # Less than the specified value (case-insensitive).
- String :
- # Less than or equal to the specified value (case-insensitive).
- String :
- # Greater than the specified value (case-insensitive).
- String :
- # Greater than or equal to the specified value (case-insensitive).
- String :
- }
link Require by
- DeploymentFilterA filter to be used against `Deployment` object types. All fields are combined with a logical ‘and.’
- DetectionItemFilterA filter to be used against `DetectionItem` object types. All fields are combined with a logical ‘and.’
- ImageAnnotationFilterA filter to be used against `ImageAnnotation` object types. All fields are combined with a logical ‘and.’
- 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.’
- OrganizationFilterA filter to be used against `Organization` object types. All fields are combined with a logical ‘and.’
- OrgUserFilterA filter to be used against `OrgUser` object types. All fields are combined with a logical ‘and.’
- QueryThe root query type which gives access points into the data universe.
- 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.’