OBJECT

CompanyLocation

Geographic location of a Company or subsidiary.

link GraphQL Schema definition

  • type CompanyLocation implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • companyRowId: UUID
  • partnerCompanyRowId: UUID
  • createdBy: UUID!
  • # Indicates the main location of a company
  • main: Boolean!
  • street: NonEmptyText
  • city: NonEmptyText
  • zip: NonEmptyText
  • country: CountryCode!
  • phone: NonEmptyText
  • email: EmailAddr
  • website: NonEmptyText
  • # Country specific commercial register number (Firmenbuch/Handelsregister)
  • registrationNo: NonEmptyText
  • taxNo: NonEmptyText
  • vatNo: VatId
  • updatedAt: UpdatedTime!
  • createdAt: CreatedTime!
  • # Reads a single `Company` that is related to this `CompanyLocation`.
  • companyByCompanyRowId: Company
  • # Reads a single `PartnerCompany` that is related to this `CompanyLocation`.
  • partnerCompanyByPartnerCompanyRowId: PartnerCompany
  • # Reads and enables pagination through a set of `DeliveryNote`.
  • #
  • # 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 `DeliveryNote`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • deliveryNotesByPartnerCompanyLocationRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeliveryNotesOrderBy!],
  • condition: DeliveryNoteCondition
  • ): DeliveryNotesConnection!
  • # Reads and enables pagination through a set of `Invoice`.
  • #
  • # 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 `Invoice`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • invoicesByPartnerCompanyLocationRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoicesOrderBy!],
  • condition: InvoiceCondition
  • ): InvoicesConnection!
  • }