aboutsummaryrefslogtreecommitdiff
path: root/src/graphql/hello/resolvers.ts
blob: f882765ffe9da4fd99c9f7a086f80e3647be7e52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type { WithIndex } from '../$types';
import type { Resolvers } from './$types';

export const resolvers: WithIndex<Resolvers> = {
	Query: {
		hello() {
			return 'Hello SvelteKit!';
		}
	}
};