Skip to content

Commit

Permalink
Fix precedence error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Kearl committed Jul 25, 2019
1 parent 356af7d commit 20d9a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apollo-gateway/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export class ApolloGateway implements GraphQLService {
>,
): Promise<GraphQLExecutionResult> => {
const { request, document, queryHash } = requestContext;
const queryPlanStoreKey = queryHash + request.operationName || '';
const queryPlanStoreKey = queryHash + (request.operationName || '');
const operationContext = buildOperationContext(
this.schema!,
document,
Expand Down

0 comments on commit 20d9a00

Please sign in to comment.