UNPKG

portal-www

Version:

Nova Portal Website. Based on Next starter by Ueno

22 lines (19 loc) 386 B
import gql from 'graphql-tag'; export const POSTPONE_INVOICE = gql` mutation PostponeInvoice($input: ContractsInvoiceInput!) { postponeInvoice(input: $input) { id updated status } } `; export const PAY_INVOICE = gql` mutation PayInvoice($input: ContractsInvoiceInput!) { payInvoice(input: $input) { id updated status } } `;