OBJECT

AccountingInstruction

Accounting instructions for the current client company

link GraphQL Schema definition

  • type AccountingInstruction implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • clientCompanyRowId: UUID!
  • instruction: TrimmedText!
  • updatedBy: UUID!
  • updatedAt: Datetime!
  • createdBy: UUID!
  • createdAt: Datetime!
  • # Reads a single `ClientCompany` that is related to this `AccountingInstruction`.
  • clientCompanyByClientCompanyRowId: ClientCompany!
  • # Reads a single `User` that is related to this `AccountingInstruction`.
  • userByUpdatedBy: User!
  • # Reads a single `User` that is related to this `AccountingInstruction`.
  • userByCreatedBy: User!
  • }