portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
18 lines (15 loc) • 352 B
text/typescript
import gql from 'graphql-tag';
import { errorFragment } from '../fragments/error';
export const ADD_WALLET_CARDS_USER = gql`
mutation AddWalletCardsUser($input: AddWalletCardsUserInput!) {
addWalletCardsUser(input: $input) {
addUser {
success
}
error {
...ErrorFragment
}
}
}
${errorFragment}
`;