wundergraph.andert.me/.wundergraph/wundergraph.server.ts
Nithin Kumar B 53e657d7ae feat: init
2022-10-28 18:12:05 +05:30

12 lines
375 B
TypeScript
Executable File

import {configureWunderGraphServer} from '@wundergraph/sdk';
import type {HooksConfig} from './generated/wundergraph.hooks';
import type {InternalClient} from './generated/wundergraph.internal.client';
export default configureWunderGraphServer<HooksConfig, InternalClient>(() => ({
hooks: {
queries: {},
mutations: {},
},
graphqlServers: []
}));