Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
1/* eslint-disable */ 2/* prettier-ignore */ 3 4/** An IntrospectionQuery representation of your schema. 5 * 6 * @remarks 7 * This is an introspection of your schema saved as a file by GraphQLSP. 8 * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. 9 * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to 10 * instead save to a .ts instead of a .d.ts file. 11 */ 12export type introspection = { 13 name: 'todos'; 14 query: 'Query'; 15 mutation: never; 16 subscription: never; 17 types: { 18 'Boolean': unknown; 19 'ID': unknown; 20 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'todo': { name: 'todo'; type: { kind: 'OBJECT'; name: 'Todo'; ofType: null; } }; }; }; 21 'String': unknown; 22 'Todo': { kind: 'OBJECT'; name: 'Todo'; fields: { 'completed': { name: 'completed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'text': { name: 'text'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 23 }; 24}; 25 26import * as gqlTada from 'gql.tada';