14 lines
No EOL
194 B
JavaScript
14 lines
No EOL
194 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const DEPOSIT = gql`
|
|
mutation deposit(
|
|
$amount: Number!
|
|
) {
|
|
contactUs(
|
|
amount: $amount,
|
|
) {
|
|
error
|
|
received
|
|
}
|
|
}
|
|
` |