From 802dcc9f5a4b2f0824e2600cd080d33691056d16 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 28 Sep 2024 16:40:08 -0700 Subject: feat(api): set up graphql api --- src/graphql/hello/index.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/graphql/hello/index.ts (limited to 'src/graphql/hello/index.ts') diff --git a/src/graphql/hello/index.ts b/src/graphql/hello/index.ts new file mode 100644 index 00000000..925a7ece --- /dev/null +++ b/src/graphql/hello/index.ts @@ -0,0 +1,4 @@ +import typeDefs from './schema.graphql?raw'; +import { resolvers } from './resolvers'; + +export default { typeDefs, resolvers }; -- cgit v1.2.3