Creates a deposit entry in the ledger. Used in wallet applications when crediting a user from a successful top-up. This operation will create a "Deposits" asset account as a side effect which you can use to keep track of all the deposits in your database.
Query
mutation DepositWallet($walletId: ID!, $input: DepositInput!) {
tenant {
depositWallet(walletId: $walletId, input: $input) {
id
currency
note
amounts {
id
account {
id
name
type
currency
balance
user {
id
username
}
}
}
}
}
}