portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
20 lines (17 loc) • 416 B
text/typescript
import gql from 'graphql-tag';
export const PAYER_ALTERATIONS_BATCH = gql`
mutation PayerAlterationsBatch($input: BatchPayerAlterationsInput) {
payerAlterationsBatch(input: $input) {
message
success
requestId
}
}
`;
export const PAYER_ALTERATION = gql`
mutation PayerAlteration($input: PayerAlterationMutationInput) {
payerAlteration(input: $input) {
message
}
}
`;