portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
22 lines (20 loc) • 411 B
text/typescript
import gql from 'graphql-tag';
export const CANCELLING_REASONS = gql`
query ReasonsForCancel($order: [ReasonsForCancellingContractOrder_cfContent]) {
reasonsForCancellingContractCollection(order: $order) {
items {
id
order
reason
sys {
id
}
optionsCollection {
items {
title
}
}
}
}
}
`;