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!
- : UUID!
- : UUID
- : UUID
- : UUID!
- # Indicates the main location of a company
- : Boolean!
- : NonEmptyText
- : NonEmptyText
- : NonEmptyText
- : CountryCode!
- : NonEmptyText
- : EmailAddr
- : NonEmptyText
- # Country specific commercial register number (Firmenbuch/Handelsregister)
- : NonEmptyText
- : NonEmptyText
- : VatId
- : UpdatedTime!
- : CreatedTime!
- # Reads a single `Company` that is related to this `CompanyLocation`.
- : Company
- # Reads a single `PartnerCompany` that is related to this `CompanyLocation`.
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DeliveryNotesOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoicesOrderBy!],
- : InvoiceCondition
- ): InvoicesConnection!
- }
link Require by
- CompanyA `Company` represents a partner company of the currently authenticated client company.
- CompanyLocationsConnectionA connection to a list of `CompanyLocation` values.
- CompanyLocationsEdgeA `CompanyLocation` edge in the connection.
- DeliveryNoteA `DeliveryNote`.
- InvoiceA `Document` representing an `Invoice`.
- QueryThe root query type which gives access points into the data universe.
- UpdateInvoiceDatePayloadThe output of our `updateInvoiceDate` mutation.
- UpdateInvoiceDeliveryNoteNumbersPayloadThe output of our `updateInvoiceDeliveryNoteNumbers` mutation.
- UpdateInvoiceInternalNumberPayloadThe output of our `updateInvoiceInternalNumber` mutation.
- UpdateInvoiceNumberPayloadThe output of our `updateInvoiceNumber` mutation.
- UpdateInvoiceOpenItemsNumberPayloadThe output of our `updateInvoiceOpenItemsNumber` mutation.
- UpdateInvoiceOrderDatePayloadThe output of our `updateInvoiceOrderDate` mutation.
- UpdateInvoiceOrderNumberPayloadThe output of our `updateInvoiceOrderNumber` mutation.
- UpdateInvoicePaymentStatusPayloadThe output of our `updateInvoicePaymentStatus` mutation.
- UpdateInvoicePurchasePayloadThe output of our `updateInvoicePurchase` mutation.