add count in graphql query

This commit is contained in:
ogerly 2022-03-25 20:19:01 +01:00
parent 95e7aeacdc
commit db8e112648

View File

@ -3,6 +3,8 @@ import gql from 'graphql-tag'
export const listTransactionLinksAdmin = gql`
query ($currentPage: Int = 1, $pageSize: Int = 5, $userId: Int!) {
listTransactionLinksAdmin(currentPage: $currentPage, pageSize: $pageSize, userId: $userId) {
linkCount
linkList {
id
amount
holdAvailableAmount
@ -14,4 +16,5 @@ export const listTransactionLinksAdmin = gql`
deletedAt
}
}
}
`