aboutsummaryrefslogtreecommitdiff
path: root/src/graphql/hello/resolvers.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphql/hello/resolvers.ts')
-rw-r--r--src/graphql/hello/resolvers.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/graphql/hello/resolvers.ts b/src/graphql/hello/resolvers.ts
deleted file mode 100644
index f882765f..00000000
--- a/src/graphql/hello/resolvers.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import type { WithIndex } from '../$types';
-import type { Resolvers } from './$types';
-
-export const resolvers: WithIndex<Resolvers> = {
- Query: {
- hello() {
- return 'Hello SvelteKit!';
- }
- }
-};