OBJECT
Organization
link GraphQL Schema definition
- type Organization implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- ID! :
- UUID! :
- String! :
- String :
- String :
- String :
- String :
- String :
- Boolean :
- String :
- String :
- String :
- # 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 `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!
- }
link Require by
- DeleteOrgUserPayloadThe output of our delete `OrgUser` mutation.
- mnUpdateServerPayloadThe output of our update mn `Server` mutation.
- OrganizationsConnectionA connection to a list of `Organization` values.
- OrganizationsEdgeA `Organization` edge in the connection.
- OrgUsernull
- 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.
- Servernull
- UpdateOrganizationPayloadThe output of our update `Organization` mutation.
- UpdateOrgUserPayloadThe output of our update `OrgUser` mutation.
- UpdateServerPayloadThe output of our update `Server` mutation.
- UpsertOrganizationPayloadThe output of our upsert `Organization` mutation.