Skip to main content

PendingTransaction

Transactions that have been made, but the funds have not yet moved.

This type requires the following scope:

[transactions]

type PendingTransaction implements Node {
id: ID!
amount: Money!
description: String!
date: Date!
bankAccount: BankAccount!
}

Fields

id ● ID! non-null scalar

amount ● Money! non-null scalar

Positive values represent an inflow into the account. Conversely negative values represent money leaving the account.

description ● String! non-null scalar

The description of the transaction as it appears in the user's statement

date ● Date! non-null scalar

The date at which the transaction ocurred. The granularity of the transaction date will largely be at the day level, however if a given bank has more accurate times available, this will be included in the transaction date.

bankAccount ● BankAccount! non-null object

The bank account in which the transaction occurred

Interfaces

Node interface

An abstract datatype that has a locally unique identifier, allowing a given node to be later queried by id using the node(id: ID!) query.