OBJECT
Query
The root query type which gives access points into the data universe.
link GraphQL Schema definition
- type Query implements Node {
- # Exposes the root query type nested one level down. This is helpful for Relay 1
- # which can only query top level fields if they are in a particular form.
- : Query!
- # The root query type must be a `Node` to work well with Relay 1 mutations. This
- # just resolves to `query`.
- : ID!
- # Fetches an object given its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID`.
- (: ID!): Node
- # Reads and enables pagination through a set of `Deployment`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `Deployment`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DeploymentsOrderBy!],
- : DeploymentCondition,
- : DeploymentFilter
- ): DeploymentsConnection
- # Reads and enables pagination through a set of `DetectionItem`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `DetectionItem`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DetectionItemsOrderBy!],
- : DetectionItemCondition,
- : DetectionItemFilter
- ): DetectionItemsConnection
- # Reads and enables pagination through a set of `Image`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `Image`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- # includeArchived: Indicates whether archived items should be
- # included in the results or not.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ImagesOrderBy!],
- : ImageCondition,
- : ImageFilter,
- : IncludeArchivedOption
- ): ImagesConnection
- # Reads and enables pagination through a set of `ImageAnnotation`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `ImageAnnotation`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ImageAnnotationsOrderBy!],
- : ImageAnnotationCondition,
- : ImageAnnotationFilter
- ): ImageAnnotationsConnection
- # Reads and enables pagination through a set of `Model`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `Model`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ModelsOrderBy!],
- : ModelCondition,
- : ModelFilter
- ): ModelsConnection
- # Reads and enables pagination through a set of `ModelDeploymentRule`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `ModelDeploymentRule`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ModelDeploymentRulesOrderBy!],
- : ModelDeploymentRuleCondition,
- : ModelDeploymentRuleFilter
- ): ModelDeploymentRulesConnection
- # Reads and enables pagination through a set of `ModelDetectionItem`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `ModelDetectionItem`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ModelDetectionItemsOrderBy!],
- : ModelDetectionItemCondition,
- : ModelDetectionItemFilter
- ): ModelDetectionItemsConnection
- # Reads and enables pagination through a set of `OrgUser`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `OrgUser`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [OrgUsersOrderBy!],
- : OrgUserCondition,
- : OrgUserFilter
- ): OrgUsersConnection
- # Reads and enables pagination through a set of `Organization`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `Organization`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [OrganizationsOrderBy!],
- : OrganizationCondition,
- : OrganizationFilter
- ): OrganizationsConnection
- # Reads and enables pagination through a set of `Server`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `Server`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ServersOrderBy!],
- : ServerCondition,
- : ServerFilter
- ): ServersConnection
- # Reads and enables pagination through a set of `ServerAction`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `ServerAction`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ServerActionsOrderBy!],
- : ServerActionCondition,
- : ServerActionFilter
- ): ServerActionsConnection
- # Reads and enables pagination through a set of `ServerHeartbeat`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `ServerHeartbeat`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ServerHeartbeatsOrderBy!],
- : ServerHeartbeatCondition,
- : ServerHeartbeatFilter
- ): ServerHeartbeatsConnection
- # Arguments
- # id: [Not documented]
- (: UUID!): Deployment
- # Arguments
- # id: [Not documented]
- (: UUID!): DetectionItem
- # Arguments
- # organizationId: [Not documented]
- # siteId: [Not documented]
- # customerId: [Not documented]
- (
- : UUID!,
- : String!,
- : String!
- ): DetectionItem
- # Arguments
- # id: [Not documented]
- (: UUID!): Image
- # Arguments
- # id: [Not documented]
- (: UUID!): ImageAnnotation
- # Arguments
- # id: [Not documented]
- (: UUID!): Model
- # Arguments
- # id: [Not documented]
- (: UUID!): ModelDeploymentRule
- # Arguments
- # modelId: [Not documented]
- # detectionItemId: [Not documented]
- (
- : UUID!,
- : UUID!
- ): ModelDetectionItem
- # Arguments
- # id: [Not documented]
- (: UUID!): ModelDetectionItem
- # Arguments
- # userId: [Not documented]
- (: UUID!): OrgUser
- # Arguments
- # id: [Not documented]
- (: UUID!): Organization
- # Arguments
- # userId: [Not documented]
- (: UUID!): Server
- # Arguments
- # deviceId: [Not documented]
- (: UUID!): Server
- # Arguments
- # serialNumber: [Not documented]
- (: String!): Server
- # Arguments
- # id: [Not documented]
- (: UUID!): ServerAction
- # Arguments
- # deviceId: [Not documented]
- # createdAt: [Not documented]
- (
- : UUID!,
- : Datetime!
- ): ServerHeartbeat
- # Arguments
- # organizationId: [Not documented]
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # filter: A filter to be used in determining which values should
- # be returned by the collection.
- (
- : UUID,
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : StringFilter
- ): AllTagsConnection
- # Gets the user who was identified by our JWT.
- : OrgUser
- # Arguments
- # email: [Not documented]
- (: String!): OrgUser
- # Reads a single `Deployment` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `Deployment`.
- (: ID!): Deployment
- # Reads a single `DetectionItem` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `DetectionItem`.
- (: ID!): DetectionItem
- # Reads a single `Image` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `Image`.
- (: ID!): Image
- # Reads a single `ImageAnnotation` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `ImageAnnotation`.
- (: ID!): ImageAnnotation
- # Reads a single `Model` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `Model`.
- (: ID!): Model
- # Reads a single `ModelDeploymentRule` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `ModelDeploymentRule`.
- (: ID!): ModelDeploymentRule
- # Reads a single `ModelDetectionItem` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `ModelDetectionItem`.
- (: ID!): ModelDetectionItem
- # Reads a single `OrgUser` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `OrgUser`.
- (: ID!): OrgUser
- # Reads a single `Organization` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `Organization`.
- (: ID!): Organization
- # Reads a single `Server` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `Server`.
- (: ID!): Server
- # Reads a single `ServerAction` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `ServerAction`.
- (: ID!): ServerAction
- # Reads a single `ServerHeartbeat` using its globally unique `ID`.
- #
- # Arguments
- # nodeId: The globally unique `ID` to be used in selecting a
- # single `ServerHeartbeat`.
- (: ID!): ServerHeartbeat
- }
link Require by
- AuthenticatePayloadThe output of our `authenticate` mutation.
- ChangeMfaTypePayloadThe output of our `changeMfaType` mutation.
- ChangePasswordPayloadThe output of our `changePassword` mutation.
- ChangeRolePayloadThe output of our `changeRole` mutation.
- CreateDeploymentPayloadThe output of our create `Deployment` mutation.
- CreateDetectionItemPayloadThe output of our create `DetectionItem` mutation.
- CreateImageAnnotationPayloadThe output of our create `ImageAnnotation` mutation.
- CreateImagePayloadThe output of our create `Image` mutation.
- CreateModelDeploymentRulePayloadThe output of our create `ModelDeploymentRule` mutation.
- CreateModelDetectionItemPayloadThe output of our create `ModelDetectionItem` mutation.
- CreateModelPayloadThe output of our create `Model` mutation.
- CreateServerActionPayloadThe output of our create `ServerAction` mutation.
- CreateServerHeartbeatPayloadThe output of our create `ServerHeartbeat` mutation.
- DeleteDeploymentPayloadThe output of our delete `Deployment` mutation.
- DeleteDetectionItemPayloadThe output of our delete `DetectionItem` mutation.
- DeleteImageAnnotationPayloadThe output of our delete `ImageAnnotation` mutation.
- DeleteImagePayloadThe output of our delete `Image` mutation.
- DeleteModelDeploymentRulePayloadThe output of our delete `ModelDeploymentRule` mutation.
- DeleteModelDetectionItemPayloadThe output of our delete `ModelDetectionItem` mutation.
- DeleteModelPayloadThe output of our delete `Model` mutation.
- DeleteOrgUserPayloadThe output of our delete `OrgUser` mutation.
- DeleteServerActionPayloadThe output of our delete `ServerAction` mutation.
- DeleteServerHeartbeatPayloadThe output of our delete `ServerHeartbeat` mutation.
- DeleteUserPayloadThe output of our `deleteUser` mutation.
- ListenPayloadnull
- mnCreateDeploymentPayloadThe output of our many create `Deployment` mutation.
- mnCreateDetectionItemPayloadThe output of our many create `DetectionItem` mutation.
- mnCreateImageAnnotationPayloadThe output of our many create `ImageAnnotation` mutation.
- mnCreateImagePayloadThe output of our many create `Image` mutation.
- mnCreateModelDetectionItemPayloadThe output of our many create `ModelDetectionItem` mutation.
- mnCreateServerActionPayloadThe output of our many create `ServerAction` mutation.
- mnDeleteDeploymentPayloadThe output of our delete mn `Deployment` mutation.
- mnDeleteDetectionItemPayloadThe output of our delete mn `DetectionItem` mutation.
- mnDeleteImageAnnotationPayloadThe output of our delete mn `ImageAnnotation` mutation.
- mnDeleteImagePayloadThe output of our delete mn `Image` mutation.
- mnDeleteModelDetectionItemPayloadThe output of our delete mn `ModelDetectionItem` mutation.
- mnDeleteServerActionPayloadThe output of our delete mn `ServerAction` mutation.
- mnUpdateDeploymentPayloadThe output of our update mn `Deployment` mutation.
- mnUpdateDetectionItemPayloadThe output of our update mn `DetectionItem` mutation.
- mnUpdateImageAnnotationPayloadThe output of our update mn `ImageAnnotation` mutation.
- mnUpdateImagePayloadThe output of our update mn `Image` mutation.
- mnUpdateModelDetectionItemPayloadThe output of our update mn `ModelDetectionItem` mutation.
- mnUpdateServerActionPayloadThe output of our update mn `ServerAction` mutation.
- mnUpdateServerPayloadThe output of our update mn `Server` mutation.
- QueryThe root query type which gives access points into the data universe.
- RegisterDevicePayloadThe output of our `registerDevice` mutation.
- RegisterOrganizationPayloadThe output of our `registerOrganization` mutation.
- RegisterUserPayloadThe output of our `registerUser` mutation.
- RequestOtpPayloadThe output of our `requestOtp` mutation.
- ResetPasswordPayloadThe output of our `resetPassword` mutation.
- UpdateDeploymentPayloadThe output of our update `Deployment` mutation.
- UpdateDetectionItemPayloadThe output of our update `DetectionItem` mutation.
- UpdateImageAnnotationPayloadThe output of our update `ImageAnnotation` mutation.
- UpdateImagePayloadThe output of our update `Image` mutation.
- UpdateModelDeploymentRulePayloadThe output of our update `ModelDeploymentRule` mutation.
- UpdateModelDetectionItemPayloadThe output of our update `ModelDetectionItem` mutation.
- UpdateModelPayloadThe output of our update `Model` mutation.
- UpdateOrganizationPayloadThe output of our update `Organization` mutation.
- UpdateOrgUserPayloadThe output of our update `OrgUser` mutation.
- UpdateServerActionPayloadThe output of our update `ServerAction` mutation.
- UpdateServerHeartbeatPayloadThe output of our update `ServerHeartbeat` mutation.
- UpdateServerPayloadThe output of our update `Server` mutation.
- UpsertOrganizationPayloadThe output of our upsert `Organization` mutation.
- ValidateMultiFactorAuthenticationPayloadThe output of our `validateMultiFactorAuthentication` mutation.