Transaction
type WalletTransaction {
# Transaction ID
id: String! # 1ed4bd11-0a0e-658a-9e45-0242ac1d0004
# Person
person: PersonPublic!
# Person
counterparty: PersonPublic
# Amount
amount: Money!
# Fee
fee: Money
# Status
status: WalletTransactionStatus! # SUCCESS
# Reason
reason: WalletTransactionReason! # MARKET_PRODUCT
# Created at
createdAt: DateTime! # 2023-11-29T23:33:27+0000
# Transaction reason comment. Currently available for withdrawal
comment: String # Some comment
}