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