mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
19 lines
272 B
JavaScript
19 lines
272 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const showContributionLink = gql`
|
|
query ($id: Int!) {
|
|
showContributionLink {
|
|
id
|
|
validFrom
|
|
validTo
|
|
name
|
|
memo
|
|
amount
|
|
cycle
|
|
maxPerCycle
|
|
maxAmountPerMonth
|
|
code
|
|
}
|
|
}
|
|
`
|