Skip to content

Commit

Permalink
SingleFieldSubscriptionsRule: fix order of imports (#3167)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Jun 9, 2021
1 parent d82c8e2 commit 28a382e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/validation/rules/SingleFieldSubscriptionsRule.ts
Expand Up @@ -8,14 +8,15 @@ import type {
} from '../../language/ast';
import { Kind } from '../../language/kinds';

import type { ValidationContext } from '../ValidationContext';
import type { ExecutionContext } from '../../execution/execute';
import {
collectFields,
defaultFieldResolver,
defaultTypeResolver,
} from '../../execution/execute';

import type { ValidationContext } from '../ValidationContext';

/**
* Subscriptions must only include a non-introspection field.
*
Expand Down

0 comments on commit 28a382e

Please sign in to comment.