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.
  • nodeId: ID!
  • id: UUID!
  • name: String!
  • storageAccountUrl: String
  • storageAccountKey: String
  • storageAccountSecret: String
  • storageAccountBucket: String
  • itemApiUrl: String
  • autoLabelImages: Boolean
  • address: String
  • email: String
  • phoneNumber: 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.
  • orgUsersByOrganizationId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [OrgUsersOrderBy!],
  • condition: OrgUserCondition,
  • filter: 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.
  • serversByOrganizationId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ServersOrderBy!],
  • condition: ServerCondition,
  • filter: ServerFilter
  • ): ServersConnection!
  • }