mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
import { gql } from 'graphql-request'
|
|
|
|
export const voteForSendCoins = gql`
|
|
mutation ($args: SendCoinsArgs!) {
|
|
voteForSendCoins(data: $args) {
|
|
vote
|
|
recipGradidoID
|
|
recipFirstName
|
|
recipLastName
|
|
recipAlias
|
|
}
|
|
}
|
|
`
|