portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
50 lines (46 loc) • 1.11 kB
text/typescript
import gql from 'graphql-tag';
export const payerChangeRequest = gql`
query PayerChangeRequest($input: PayerChangeRequestInput!) {
payerChangeRequest(input: $input) {
effectiveDate
id
newContractId
newContractPayerId
originContractId
originContractPayerId
status
affectedServiceIds
newContractTitle
}
}
`;
export const ContractPayerChangeRequestsFrom = gql`
query ContractPayerChangeRequestsFrom($input: ContractInput!) {
contractPayerChangeRequestsFrom(input: $input) {
affectedServiceIds
effectiveDate
id
newContractId
newContractPayerId
newContractTitle
originContractId
originContractPayerId
status
}
}
`;
export const ContractPayerChangeRequestsTo = gql`
query ContractPayerChangeRequestsTo($input: ContractInput!) {
contractPayerChangeRequestsTo(input: $input) {
affectedServiceIds
effectiveDate
id
newContractId
newContractPayerId
newContractTitle
originContractId
originContractPayerId
status
}
}
`;