@accounter/server
Version:
The test suite is split into three Vitest projects for efficiency and isolation:
15 lines (13 loc) • 353 B
text/typescript
import { gql } from 'graphql-modules';
export default gql`
extend type Mutation {
addDeelContract(
contractId: ID!
contractStartDate: TimelessDate!
contractorId: UUID!
contractorName: String!
businessId: UUID!
): Boolean! (role: ACCOUNTANT)
fetchDeelDocuments: [Charge!]! (role: ACCOUNTANT)
}
`;