mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
24 lines
477 B
JavaScript
24 lines
477 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const listContributionLinks = gql`
|
|
query ($currentPage: Int = 1, $pageSize: Int = 25, $order: Order = DESC) {
|
|
listContributionLinks(currentPage: $currentPage, pageSize: $pageSize, order: $order) {
|
|
links {
|
|
id
|
|
amount
|
|
name
|
|
memo
|
|
code
|
|
link
|
|
createdAt
|
|
validFrom
|
|
validTo
|
|
maxAmountPerMonth
|
|
cycle
|
|
maxPerCycle
|
|
}
|
|
count
|
|
}
|
|
}
|
|
`
|