UNPKG
portal-www
Version:
beta (1.74.0)
latest (1.74.0)
1.74.0
Nova Portal Website. Based on Next starter by Ueno
portal-www
/
src
/
beta
/
graphql
/
mutations
/
discounts.ts
10 lines
(8 loc)
•
214 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
gql
from
'graphql-tag'
;
export
const
REMOVE_CONTRACT_DISCOUNT
= gql`
mutation
RemoveContractDiscount
(
$input
: SingleDiscountInput
!
)
{
removeContractDiscount
(
input
:
$input
)
{
message
}
}
`
;