+73
-1
README.md
+73
-1
README.md
···+when on a TypeScript file or adding a file like [this](https://github.com/0no-co/GraphQLSP/blob/main/packages/example/.vscode/settings.json).+- `schema` allows you to specify a url, `.json` or `.graphql` file as your schema. If you need to specify headers for your introspection+you can opt into the object notation i.e. `{ "schema": { "url": "x", "headers": { "Authorization": "y" } }}`+- `disableTypegen` disables type-generation in general, this could be needed if offset bugs are introduced+- `scalars` allows you to pass an object of scalars that we'll feed into `graphql-code-generator`+- `extraTypes` allows you to specify imports or declare types to help with `scalar` definitions+When we use a `useQuery` that supports `TypedDocumentNode` it will automatically pick up the typings+from the `query` you provide it. However for fragments this could become a bit more troublesome, the+This is mainly needed in cases where this isn't supported out of the box and mainly serves as a way