I think we're good

This commit is contained in:
Gregory Schier
2025-07-07 13:41:26 -07:00
parent 47722643ee
commit 01f9c072a7
5 changed files with 459 additions and 575 deletions

View File

@@ -1,5 +1,5 @@
import { atom } from "jotai";
import type { GraphQLSchema } from "graphql/index";
import type { GraphQLSchema } from 'graphql';
import { atom } from 'jotai';
export const graphqlSchemaAtom = atom<GraphQLSchema | null>(null);
export const graphqlDocStateAtom = atom<boolean>(false);