TransactionCategory
A description that indicates the purpose of a transaction. Used to group related transactions. Unlike TransactionCategorization, this doesn't come with the probability that the description is relevant to any given transaction. Can be refetched, per the Relay server spec.
type TransactionCategory implements Node {
id: ID!
description: String!
}
Fields
id
● ID!
non-null scalar
description
● String!
non-null scalar
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.