@accounter/server
Version:
44 lines (34 loc) • 944 B
text/typescript
import { gql } from 'graphql-modules';
// eslint-disable-next-line import/no-default-export
export default gql`
extend interface Charge {
" missing info suggestions data "
missingInfoSuggestions: ChargeSuggestions
}
extend type CommonCharge {
missingInfoSuggestions: ChargeSuggestions
}
extend type ConversionCharge {
missingInfoSuggestions: ChargeSuggestions
}
extend type SalaryCharge {
missingInfoSuggestions: ChargeSuggestions
}
extend type InternalTransferCharge {
missingInfoSuggestions: ChargeSuggestions
}
extend type DividendCharge {
missingInfoSuggestions: ChargeSuggestions
}
extend type BusinessTripCharge {
missingInfoSuggestions: ChargeSuggestions
}
extend type MonthlyVatCharge {
missingInfoSuggestions: ChargeSuggestions
}
" represent charge suggestions for missing info "
type ChargeSuggestions {
description: String
tags: [Tag!]!
}
`;