OBJECT

Company

link GraphQL Schema definition

  • type Company {
  • id: UUID
  • name: String
  • brandName: String
  • legalForm: LegalForm
  • founded: Date
  • dissolved: Date
  • street: String
  • city: String
  • zip: String
  • country: CountryCode
  • ceo: String
  • phone: String
  • email: EmailAddr
  • website: String
  • registrationNr: String
  • vatId: VatId
  • updatedAt: UpdatedTime!
  • createdAt: CreatedTime!
  • # get company cost centers
  • #
  • # 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.
  • companyCostCentersById(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): CompanyCostCentersConnection!
  • # get company tags
  • #
  • # 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.
  • companyTagsById(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): CompanyTagsConnection!
  • # get users for company
  • #
  • # 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.
  • usersById(first: Int, last: Int, offset: Int, before: Cursor, after: Cursor): UsersConnection!
  • }