Skip to content

Commit 20d9a00

Browse files
author
Jackson Kearl
committed
Fix precedence error
1 parent 356af7d commit 20d9a00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/apollo-gateway/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ export class ApolloGateway implements GraphQLService {
260260
>,
261261
): Promise<GraphQLExecutionResult> => {
262262
const { request, document, queryHash } = requestContext;
263-
const queryPlanStoreKey = queryHash + request.operationName || '';
263+
const queryPlanStoreKey = queryHash + (request.operationName || '');
264264
const operationContext = buildOperationContext(
265265
this.schema!,
266266
document,

0 commit comments

Comments
 (0)