Set up graphql for requests

This commit is contained in:
Quinn Hegeman
2026-03-07 18:51:46 +01:00
parent 770198bb5b
commit f914b7db1c
6 changed files with 1202 additions and 538 deletions

5
astro/src/graphql.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare module '*.graphql' {
import { DocumentNode } from 'graphql';
const Schema: DocumentNode;
export default Schema;
}