mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
31 lines
758 B
TypeScript
31 lines
758 B
TypeScript
import { gql } from 'graphql-request'
|
|
|
|
export const revertSendCoins = gql`
|
|
mutation ($args: EncryptedTransferArgs!) {
|
|
revertSendCoins(data: $args)
|
|
}
|
|
`
|
|
/*
|
|
mutation (
|
|
$recipientCommunityUuid: String!
|
|
$recipientUserIdentifier: String!
|
|
$creationDate: String!
|
|
$amount: Decimal!
|
|
$memo: String!
|
|
$senderCommunityUuid: String!
|
|
$senderUserUuid: String!
|
|
$senderUserName: String!
|
|
) {
|
|
revertSendCoins(
|
|
recipientCommunityUuid: $recipientCommunityUuid
|
|
recipientUserIdentifier: $recipientUserIdentifier
|
|
creationDate: $creationDate
|
|
amount: $amount
|
|
memo: $memo
|
|
senderCommunityUuid: $senderCommunityUuid
|
|
senderUserUuid: $senderUserUuid
|
|
senderUserName: $senderUserName
|
|
)
|
|
}
|
|
*/
|