UNPKG

charlotte-graphql

Version:

Generates GraphQL type definitions and resolvers off of a concise spec.

20 lines (18 loc) 293 B
'use strict'; module.exports = { TestPerson: { name: 'String!', x: 'Int' }, TestCompany: { name: 'String!' }, TestFriendship: { person1: 'TestPerson!', person2: 'TestPerson!' }, TestEmployment: { person: 'TestPerson!', company: 'TestCompany!' } };