OBJECT

DocumentMoneyTransaction

A DocumentMoneyTransaction represents a match between a Document and a MoneyTransaction.

link GraphQL Schema definition

  • type DocumentMoneyTransaction {
  • documentRowId: UUID!
  • moneyTransactionRowId: UUID!
  • createdBy: UUID
  • checkRowId: UUID
  • checkRowIdConfirmedBy: UUID
  • checkRowIdConfirmedAt: Datetime
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `Document` that is related to this `DocumentMoneyTransaction`.
  • documentByDocumentRowId: Document!
  • # Reads a single `MoneyTransaction` that is related to this
  • # `DocumentMoneyTransaction`.
  • moneyTransactionByMoneyTransactionRowId: MoneyTransaction!
  • # Reads a single `User` that is related to this `DocumentMoneyTransaction`.
  • userByCreatedBy: User
  • # Reads a single `User` that is related to this `DocumentMoneyTransaction`.
  • userByCheckRowIdConfirmedBy: User
  • }