Skip to content

Commit

Permalink
fix(apollo): context schema type
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Mar 31, 2020
1 parent da55b2b commit a84b0f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/@nodepack/plugin-apollo/types/context.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { ExecutionParams } from 'subscriptions-transport-ws'
import { IResolvers, PubSubEngine, ApolloServer } from 'apollo-server-express'

export interface Schema {
typeDefs: DocumentNode
typeDefs: DocumentNode[]
resolvers: IResolvers
internalTypeDefs: DocumentNode
mergeTypeDefs: DocumentNode
internalTypeDefs: DocumentNode[]
mergeTypeDefs: DocumentNode[]
mergeResolvers: IResolvers
schemaDirectives: { [key: string]: any }
}
Expand Down

0 comments on commit a84b0f6

Please sign in to comment.