UNPKG

@kazion/create-app

Version:

A cli tool to help you get started with graphql and rest api's with typescript

9 lines (7 loc) 231 B
import { makeExecutableSchema } from '@graphql-tools/schema' import { resolvers } from '~/_graphql/resolvers' import { typeDefs } from '~/_graphql/typeDefs' export const schema = makeExecutableSchema({ typeDefs, resolvers, })