UNPKG

@accounter/server

Version:

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

15 lines (12 loc) 234 B
import { gql } from 'graphql-modules'; export default gql` extend type Query { allCountries: [Country!]! @auth(role: ACCOUNTANT) } " a country " type Country { id: ID! name: String! code: CountryCode! } `;