Retrieves all transactions made from a user and a coin.
Example
query getTransactionHistory {
getTransactionHistory(cid: ARRR, uname: "", first: 10) {
nodes {
amount
coinPrice
createdAt
rowId
status
transactionId
}
}
}
Response
{
"data": {
"getTransactionHistory": {
"edges": [
{
"node": {
"amount": "",
"coinPrice": "",
"createdAt": "",
"rowId": "",
"status": "",
"transactionId": ""
}
}
]
}
}
}
Arguments
uname
(String!
)
cid
(CurrencyProfileName!
)
first
(Int
)
Only read the first n
values of the set.
last
(Int
)
Only read the last n
values of the set.
offset
(Int
)
Skip the first n
values from our after
cursor, an alternative to cursor
based pagination. May not be used with last
.
before
(Cursor
)
Read all values in the set before (above) this cursor.
after
(Cursor
)
Read all values in the set after (below) this cursor.
orderBy
([PayoutTxesOrderBy!]
)
The method to use when ordering PayoutTx
.
filter
(PayoutTxFilter
)
A filter to be used in determining which values should be returned by the collection.
Type
PayoutTxesConnection
A connection to a list of PayoutTx
values.