OBJECT

CreateClientCompanyPurchasePayload

The output of our createClientCompanyPurchase mutation.

link GraphQL Schema definition

  • type CreateClientCompanyPurchasePayload {
  • # The exact same `clientMutationId` that was provided in the mutation input,
  • # unchanged and unused. May be used by a client to track mutations.
  • clientMutationId: String
  • clientCompanyPurchase: ClientCompanyPurchase
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `ClientCompany` that is related to this `ClientCompanyPurchase`.
  • clientCompanyByClientCompanyRowId: ClientCompany!
  • # An edge for our `ClientCompanyPurchase`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering
  • # `ClientCompanyPurchase`.
  • clientCompanyPurchaseEdge(
  • orderBy: [ClientCompanyPurchasesOrderBy!]
  • ): ClientCompanyPurchasesEdge
  • }