UNPKG

@accounter/server

Version:

The test suite is split into three Vitest projects for efficiency and isolation:

14 lines (11 loc) 258 B
import { gql } from 'graphql-modules'; export default gql` extend type Query { employeesByEmployerId(employerId: UUID!): [Employee!]! @auth(role: ACCOUNTANT) } " represent employee record" type Employee { id: UUID! name: String! } `;