Skip to content

Commit

Permalink
Fix up PartialIntrospectionSchema type
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Feb 10, 2021
1 parent 50a4866 commit dc6346f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions exchanges/graphcache/src/ast/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ export interface SchemaIntrospector {
}

export interface PartialIntrospectionSchema {
queryType: { name: string; };
mutationType?: { name: string; };
subscriptionType?: { name: string; };
queryType: { name: string; kind?: any; };
mutationType?: { name: string; kind?: any; };
subscriptionType?: { name: string; kind?: any; };
types?: IntrospectionSchema['types'];
}

export type IntrospectionData =
Expand Down

0 comments on commit dc6346f

Please sign in to comment.