wundergraph.andert.me/.wundergraph/wundergraph.server.ts

12 lines
375 B
TypeScript
Raw Normal View History

2022-10-28 12:42:05 +00:00
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: []
}));