Card
Card
type Card {
id: ID!
transactions(
first: Int! = 50
after: String
orderBy: TransactionsOrderByInput
filters: TransactionsFiltersInput
): TransactionConnection
type: CardType!
createdAt: DateTime!
updatedAt: DateTime!
accountMembership: AccountMembership!
mainCurrency: Currency!
cardContractExpiryDate: DateTime
cardDesignUrl: String!
cardUrl: String! @deprecated
statusInfo: CardStatusInfo!
withdrawal: Boolean!
international: Boolean!
nonMainCurrencyTransactions: Boolean!
eCommerce: Boolean!
spendingLimits: [SpendingLimit!]
physicalCard: PhysicalCard
cardMaskedNumber: String!
expiryDate: String
name: String
cardProduct: CardProduct!
issuingCountry: CCA3!
insuranceSubscription: CardInsuranceSubscription
digitalCards(
first: Int! = 50
after: String
orderBy: DigitalCardOrderByInput
filters: DigitalCardFiltersInput
): DigitalCardConnection!
spending: Spending
}
Fields
Card.id ● ID! non-null scalar
Unique identifier of a card
Card.transactions ● TransactionConnection object
List of transactions of a card.
Implements the Relay Connection interface, used to paginate lists of elements. (Learn More)
Card.transactions.first ● Int! non-null scalar
the number of elements to load (default value 50, maximum: 100)
Card.transactions.after ● String scalar
the index (a unique reference in string form) from which you will load the following elements
Card.transactions.orderBy ● TransactionsOrderByInput input
an order you can apply to your list of connections (default value UpdatedAt desc)
Card.transactions.filters ● TransactionsFiltersInput input
a filtering table you can apply to your list of connections