Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion src/execution/ResolveInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {
} from '../type/index.js';

import type { FieldDetailsList } from './collectFields.js';
import type { ValidatedExecutionArgs } from './execute.js';
import type { ValidatedExecutionArgs } from './Executor.js';
import type { VariableValues } from './values.js';

/** @internal */
Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/cancellation-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import {
import type {
InitialIncrementalExecutionResult,
SubsequentIncrementalExecutionResult,
} from '../execute.js';
} from '../Executor.js';

async function complete(
document: DocumentNode,
Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/defer-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { execute, experimentalExecuteIncrementally } from '../entrypoints.js';
import type {
InitialIncrementalExecutionResult,
SubsequentIncrementalExecutionResult,
} from '../execute.js';
} from '../Executor.js';

const friendType = new GraphQLObjectType({
fields: {
Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/errorPropagation-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { parse } from '../../language/parser.js';
import { buildSchema } from '../../utilities/buildASTSchema.js';

import { execute } from '../entrypoints.js';
import type { ExecutionResult } from '../execute.js';
import type { ExecutionResult } from '../Executor.js';

const syncError = new Error('bar');

Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/lists-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { GraphQLSchema } from '../../type/schema.js';
import { buildSchema } from '../../utilities/buildASTSchema.js';

import { execute, executeSync } from '../entrypoints.js';
import type { ExecutionResult } from '../execute.js';
import type { ExecutionResult } from '../Executor.js';

describe('Execute: Accepts any iterable as list value', () => {
function complete(rootValue: unknown) {
Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/nonnull-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { GraphQLSchema } from '../../type/schema.js';
import { buildSchema } from '../../utilities/buildASTSchema.js';

import { execute, executeSync } from '../entrypoints.js';
import type { ExecutionResult } from '../execute.js';
import type { ExecutionResult } from '../Executor.js';

const syncError = new Error('sync');
const syncNonNullError = new Error('syncNonNull');
Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/oneof-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { parse } from '../../language/parser.js';
import { buildSchema } from '../../utilities/buildASTSchema.js';

import { execute } from '../entrypoints.js';
import type { ExecutionResult } from '../execute.js';
import type { ExecutionResult } from '../Executor.js';

const schema = buildSchema(`
type Query {
Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/stream-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { execute, experimentalExecuteIncrementally } from '../entrypoints.js';
import type {
InitialIncrementalExecutionResult,
SubsequentIncrementalExecutionResult,
} from '../execute.js';
} from '../Executor.js';

const friendType = new GraphQLObjectType({
fields: {
Expand Down
2 changes: 1 addition & 1 deletion src/execution/__tests__/subscribe-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
executeSubscriptionEvent,
subscribe,
} from '../entrypoints.js';
import type { ExecutionResult } from '../execute.js';
import type { ExecutionResult } from '../Executor.js';

import { SimplePubSub } from './simplePubSub.js';

Expand Down
4 changes: 2 additions & 2 deletions src/execution/entrypoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ import type {
ExecutionResult,
ExperimentalIncrementalExecutionResults,
ValidatedExecutionArgs,
} from './execute.js';
} from './Executor.js';
import {
createSourceEventStreamImpl,
experimentalExecuteQueryOrMutationOrSubscriptionEvent,
mapSourceToResponse,
} from './execute.js';
} from './Executor.js';
import { getVariableSignature } from './getVariableSignature.js';
import { getVariableValues } from './values.js';

Expand Down
2 changes: 1 addition & 1 deletion src/execution/incremental/IncrementalPublisher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {
PendingResult,
StreamItemValue,
SubsequentIncrementalExecutionResult,
} from '../execute.js';
} from '../Executor.js';
import { mapAsyncIterable } from '../mapAsyncIterable.js';
import { withConcurrentAbruptClose } from '../withConcurrentAbruptClose.js';

Expand Down
4 changes: 2 additions & 2 deletions src/execution/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { pathToArray as responsePathAsArray } from '../jsutils/Path.js';

export { experimentalExecuteQueryOrMutationOrSubscriptionEvent } from './execute.js';
export { experimentalExecuteQueryOrMutationOrSubscriptionEvent } from './Executor.js';

export {
createSourceEventStream,
Expand Down Expand Up @@ -30,7 +30,7 @@ export type {
FormattedIncrementalDeferResult,
FormattedIncrementalStreamResult,
FormattedIncrementalResult,
} from './execute.js';
} from './Executor.js';

export {
getArgumentValues,
Expand Down
2 changes: 1 addition & 1 deletion src/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { validateSchema } from './type/validate.js';
import { validate } from './validation/validate.js';

import { execute } from './execution/entrypoints.js';
import type { ExecutionResult } from './execution/execute.js';
import type { ExecutionResult } from './execution/Executor.js';

/**
* This is the primary entry point function for fulfilling GraphQL operations
Expand Down
Loading