portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
20 lines (17 loc) • 422 B
text/typescript
import gql from 'graphql-tag';
import { errorFragment } from '../fragments/error';
import { transactionFragment } from '../fragments/transaction';
export const PAY_CLAIMS = gql`
mutation payClaims($input: PayClaimsInput!) {
payClaims(input: $input) {
transaction {
...TransactionFragment
}
error {
...ErrorFragment
}
}
}
${transactionFragment}
${errorFragment}
`;