OBJECT
PartnerCompany
link GraphQL Schema definition
- type PartnerCompany implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- : ID!
- : UUID!
- : UUID
- : String
- : [String]!
- : String!
- : Boolean!
- : Datetime
- : TrimmedText
- # Is the `PartnerCompany` active or not? You may also check the `disabledAt` and
- # `disabledBy` fields.
- : Boolean!
- : UpdatedTime
- : CreatedTime
- # Reads a single `Company` that is related to this `PartnerCompany`.
- : Company
- # Reads and enables pagination through a set of `BankTransaction`.
- #
- # 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 `BankTransaction`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [BankTransactionsOrderBy!],
- : BankTransactionCondition
- ): BankTransactionsConnection!
- # Reads and enables pagination through a set of `CompanyLocation`.
- #
- # 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 `CompanyLocation`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CompanyLocationsOrderBy!],
- : CompanyLocationCondition
- ): CompanyLocationsConnection!
- # Reads and enables pagination through a set of `CreditCardTransaction`.
- #
- # 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
- # `CreditCardTransaction`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CreditCardTransactionsOrderBy!],
- : CreditCardTransactionCondition
- ): CreditCardTransactionsConnection!
- # 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!
- # Reads and enables pagination through a set of `MoneyTransaction`.
- #
- # 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 `MoneyTransaction`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [MoneyTransactionsOrderBy!],
- : MoneyTransactionCondition
- ): MoneyTransactionsConnection!
- : String
- # Derives the correct name of the `PartnerCompany`. It does so by always using the
- # `name` field if present, falling back to the linked `Company.brandNameOrName`.
- : String!
- : String
- }
link Require by
- BankTransactionnull
- CompanyLocationGeographic location of a `Company` or subsidiary.
- CreditCardTransactionnull
- DeliveryNoteA `DeliveryNote`.
- InvoiceA `Document` representing an `Invoice`.
- MoneyTransactionA `MoneyTransaction` is a money related turnover belonging to a `MoneyAccount`.
- PartnerCompaniesConnectionA connection to a list of `PartnerCompany` values.
- PartnerCompaniesEdgeA `PartnerCompany` edge in the connection.
- 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.
- UpdatePartnerCompanyPayloadThe output of our `updatePartnerCompany` mutation.