portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
28 lines (26 loc) • 533 B
text/typescript
import gql from 'graphql-tag';
export const UPDATE_SUBSCRIPTION_PAYMENT_METHOD = gql`
mutation updateSubscriptionPaymentMethod($input: SubscriptionPaymentMethodInput!) {
updateSubscriptionPaymentMethod(input: $input) {
subscriptionPaymentMethod {
id
added
active
subscriptionId
paymentMethod {
id
paymentType
nick
expiryYear
expiryMonth
maskedNumber
issuer
isDefault
}
}
error {
message
code
}
}
}`;