mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
28 lines
513 B
JavaScript
28 lines
513 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const createContributionLink = gql`
|
|
mutation (
|
|
$startDate: String!
|
|
$endDate: String!
|
|
$name: String!
|
|
$amount: Decimal!
|
|
$memo: String!
|
|
$cycle: String
|
|
$repetition: String
|
|
$maxAmount: Decimal
|
|
) {
|
|
createContributionLink(
|
|
startDate: $startDate
|
|
endDate: $endDate
|
|
name: $name
|
|
amount: $amount
|
|
memo: $memo
|
|
cycle: $cycle
|
|
repetition: $repetition
|
|
maxAmount: $maxAmount
|
|
) {
|
|
link
|
|
}
|
|
}
|
|
`
|