GraphQL Documentation explorer (#208)

This commit is contained in:
Mr0Bread
2025-06-18 03:08:39 +03:00
committed by GitHub
parent aadfbfdfca
commit b8e6dbc7c7
5 changed files with 913 additions and 87 deletions

View File

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