OBJECT
Company
link GraphQL Schema definition
- type Company {
- : UUID
- : String
- : String
- : LegalForm
- : Date
- : Date
- : String
- : String
- : String
- : CountryCode
- : String
- : String
- : EmailAddr
- : String
- : String
- : VatId
- : UpdatedTime!
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : 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.
- (: Int, : Int, : Int, : Cursor, : Cursor): UsersConnection!
- }