Skip to content

Commit b753ab4

Browse files
author
Travis CI
committed
Deploy f8438f7 to NPM branch
1 parent d5b0332 commit b753ab4

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

graphql.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ function graphql(argsOrSchema, source, rootValue, contextValue, variableValues,
4141

4242

4343
function graphqlSync(argsOrSchema, source, rootValue, contextValue, variableValues, operationName, fieldResolver) {
44+
/* eslint-enable no-redeclare */
4445
// Extract arguments from object args if provided.
4546
var result = arguments.length === 1 ? graphqlImpl(argsOrSchema.schema, argsOrSchema.source, argsOrSchema.rootValue, argsOrSchema.contextValue, argsOrSchema.variableValues, argsOrSchema.operationName, argsOrSchema.fieldResolver) : graphqlImpl(argsOrSchema, source, rootValue, contextValue, variableValues, operationName, fieldResolver); // Assert that the execution was synchronous.
4647

graphql.js.flow

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ export function graphqlSync(
136136
operationName,
137137
fieldResolver,
138138
) {
139+
/* eslint-enable no-redeclare */
139140
// Extract arguments from object args if provided.
140141
const result =
141142
arguments.length === 1

graphql.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export function graphql(argsOrSchema, source, rootValue, contextValue, variableV
2828
*/
2929

3030
export function graphqlSync(argsOrSchema, source, rootValue, contextValue, variableValues, operationName, fieldResolver) {
31+
/* eslint-enable no-redeclare */
3132
// Extract arguments from object args if provided.
3233
var result = arguments.length === 1 ? graphqlImpl(argsOrSchema.schema, argsOrSchema.source, argsOrSchema.rootValue, argsOrSchema.contextValue, argsOrSchema.variableValues, argsOrSchema.operationName, argsOrSchema.fieldResolver) : graphqlImpl(argsOrSchema, source, rootValue, contextValue, variableValues, operationName, fieldResolver); // Assert that the execution was synchronous.
3334

0 commit comments

Comments
 (0)