mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
23 lines
448 B
JavaScript
23 lines
448 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const creationTransactionList = gql`
|
|
query ($currentPage: Int = 1, $pageSize: Int = 25, $order: Order = DESC, $userId: Int!) {
|
|
creationTransactionList(
|
|
currentPage: $currentPage
|
|
pageSize: $pageSize
|
|
order: $order
|
|
userId: $userId
|
|
) {
|
|
id
|
|
amount
|
|
balanceDate
|
|
creationDate
|
|
memo
|
|
linkedUser {
|
|
firstName
|
|
lastName
|
|
}
|
|
}
|
|
}
|
|
`
|