9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import { GraphQLSchema } from 'graphql';
|
|
import rootQuery from './root-query';
|
|
|
|
const graphQLSchema = new GraphQLSchema({
|
|
query: rootQuery,
|
|
});
|
|
|
|
export default graphQLSchema;
|