···11import type * as GraphQL from 'graphql';
2233-type OrNever<T> = 0 extends 1 & T ? never : T;
33+type OrNever<T> = void extends T ? never : T;
4455export type IntrospectionQuery =
66 | {
+2-1
exchanges/graphcache/src/operations/shared.ts
···33import type {
44 InlineFragmentNode,
55 FragmentDefinitionNode,
66+ FieldNode,
67} from '@0no-co/graphql.web';
78import { Kind } from '@0no-co/graphql.web';
89···211212 ];
212213 }
213214214214- next() {
215215+ next(): FormattedNode<FieldNode> | undefined {
215216 while (this.stack.length > 0) {
216217 let state = this.stack[this.stack.length - 1];
217218 while (state.index < state.selectionSet.length) {
···11import type * as GraphQLWeb from '@0no-co/graphql.web';
22import type * as GraphQL from 'graphql';
3344-type OrNever<T> = 0 extends 1 & T ? never : T;
44+type OrNever<T> = void extends T ? never : T;
5566export type GraphQLError =
77 | GraphQLWeb.GraphQLError