Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
3df61a1
Add deprecation warning for ObservableQuery.result
jerelmiller Jun 27, 2025
7a68a91
Wrap in dev
jerelmiller Jun 27, 2025
afe93dc
Add deprecation and warning for setOptions
jerelmiller Jun 27, 2025
6eb6638
Add deprecation for result
jerelmiller Jun 27, 2025
b3d778b
Add deprecation and warning for resetQueryStoreErrors
jerelmiller Jun 27, 2025
1a88856
Add deprecation on urql helper
jerelmiller Jun 27, 2025
4a4d6c2
Add deprecation on subscribeAndCount
jerelmiller Jun 27, 2025
8264017
Add deprecation to throwServerError
jerelmiller Jun 27, 2025
ab13aee
Add deprecation for toPromise/fromPromise
jerelmiller Jun 27, 2025
321cbad
Add deprecation for itAsync
jerelmiller Jun 27, 2025
7bb198a
Add deprecation for fromError
jerelmiller Jun 27, 2025
36d69c3
Add deprecation for iterateObserversSafely
jerelmiller Jun 27, 2025
5f009d6
Deprecate isApolloError
jerelmiller Jun 27, 2025
107d862
Add deprecation for asyncMap
jerelmiller Jun 27, 2025
d80fa0b
Add warning for `resetResultIdentities`
jerelmiller Jun 27, 2025
db98bcb
Add default any for TCacheShape generic on ApolloClient
jerelmiller Jun 27, 2025
6182014
Deprecate shared base types
jerelmiller Jun 27, 2025
657dae1
Use InteropApolloQueryResult for refetchQueries
jerelmiller Jun 27, 2025
797bcf2
Use InteropApolloQueryResult for reFetchObservableQueries
jerelmiller Jun 27, 2025
cd73dd4
Use InteropApolloQueryResult for resetStore
jerelmiller Jun 27, 2025
5b2a9a7
Remove unused import
jerelmiller Jun 27, 2025
f686918
Add deprecation and warning for newData
jerelmiller Jun 27, 2025
10746c6
Warn if using a client-only query
jerelmiller Jun 27, 2025
ca1d8d6
Add warning/deprecation for onError/setOnError in ApolloLink
jerelmiller Jun 27, 2025
e6c99e9
Add deprecations for error properties in onError link
jerelmiller Jun 27, 2025
75d9392
Warn for notifyOnNetworkStatusChange for client.query
jerelmiller Jun 27, 2025
af5976b
Adjust deprecation message
jerelmiller Jun 27, 2025
fc8144f
Add warning for client queries in http/batch http link
jerelmiller Jun 27, 2025
5c31aa5
Add deprecations for getLastResult, getLastError, and resetLastResults
jerelmiller Jun 27, 2025
463e7e2
Add warnings for getLastResult, getLastError, and resetLastResults
jerelmiller Jun 27, 2025
34b4351
Add deprecations for mock functions
jerelmiller Jun 27, 2025
f96e08b
Add deprecation to result property in ServerError
jerelmiller Jun 27, 2025
efd6a22
Add additional text
jerelmiller Jun 27, 2025
23f7564
Add deprecation to queryId
jerelmiller Jun 28, 2025
8e3aecd
Add more text
jerelmiller Jun 28, 2025
5101dc0
Deprecate incremental types
jerelmiller Jun 28, 2025
4e87f49
Deprecate response
jerelmiller Jun 28, 2025
c1e248c
Add deprecations for error properties in persisted-queries link
jerelmiller Jun 28, 2025
56547bc
Fix typo
jerelmiller Jun 28, 2025
4adf124
Update api report
jerelmiller Jun 28, 2025
4e3953b
Update size limits
jerelmiller Jun 28, 2025
e144dba
Add changeset
jerelmiller Jun 28, 2025
2031d10
adjust comment
phryneas Jun 30, 2025
77fb16e
add types to deprecations
phryneas Jun 30, 2025
7420783
allow to globally disable deprecations
phryneas Jun 30, 2025
dd1cdd4
mute deprecation warnings in tests, fix one missed invariant warning
phryneas Jun 30, 2025
14b4cb7
fix imports
phryneas Jun 30, 2025
1c18c4d
chores
phryneas Jun 30, 2025
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
56 changes: 28 additions & 28 deletions .api-reports/api-report-core.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export abstract class ApolloCache<TSerialized> implements DataProxy {
}

// @public
export class ApolloClient<TCacheShape> implements DataProxy {
export class ApolloClient<TCacheShape = any> implements DataProxy {
// (undocumented)
__actionHookForDevTools(cb: () => any): void;
constructor(options: ApolloClientOptions<TCacheShape>);
Expand Down Expand Up @@ -137,9 +137,9 @@ export class ApolloClient<TCacheShape> implements DataProxy {
queryDeduplication: boolean;
readFragment<T = any, TVariables = OperationVariables>(options: DataProxy.Fragment<TVariables, T>, optimistic?: boolean): Unmasked<T> | null;
readQuery<T = any, TVariables = OperationVariables>(options: DataProxy.Query<TVariables, T>, optimistic?: boolean): Unmasked<T> | null;
reFetchObservableQueries(includeStandby?: boolean): Promise<ApolloQueryResult<any>[]>;
refetchQueries<TCache extends ApolloCache<any> = ApolloCache<TCacheShape>, TResult = Promise<ApolloQueryResult<any>>>(options: RefetchQueriesOptions<TCache, TResult>): RefetchQueriesResult<TResult>;
resetStore(): Promise<ApolloQueryResult<any>[] | null>;
reFetchObservableQueries(includeStandby?: boolean): Promise<InteropApolloQueryResult<any>[]>;
refetchQueries<TCache extends ApolloCache<any> = ApolloCache<TCacheShape>, TResult = Promise<InteropApolloQueryResult<any>>>(options: RefetchQueriesOptions<TCache, TResult>): RefetchQueriesResult<TResult>;
resetStore(): Promise<InteropApolloQueryResult<any>[] | null>;
restore(serializedState: TCacheShape): ApolloCache<TCacheShape>;
setLink(newLink: ApolloLink): void;
// @deprecated
Expand Down Expand Up @@ -255,13 +255,13 @@ export class ApolloLink {
getMemoryInternals?: () => unknown;
// @internal
readonly left?: ApolloLink;
// (undocumented)
// @deprecated (undocumented)
protected onError(error: any, observer?: Observer<FetchResult>): false | void;
// (undocumented)
request(operation: Operation, forward?: NextLink): Observable<FetchResult> | null;
// @internal
readonly right?: ApolloLink;
// (undocumented)
// @deprecated (undocumented)
setOnError(fn: ApolloLink["onError"]): this;
// (undocumented)
static split(test: (op: Operation) => boolean, left: ApolloLink | RequestHandler, right?: ApolloLink | RequestHandler): ApolloLink;
Expand Down Expand Up @@ -811,7 +811,7 @@ export const execute: typeof ApolloLink.execute;

// Warning: (ae-forgotten-export) The symbol "ExecutionPatchResultBase" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
export interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data?: never;
Expand All @@ -823,7 +823,7 @@ export interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TE
incremental?: IncrementalPayload<TData, TExtensions>[];
}

// @public (undocumented)
// @public @deprecated (undocumented)
export interface ExecutionPatchInitialResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data: TData | null | undefined;
Expand All @@ -835,7 +835,7 @@ export interface ExecutionPatchInitialResult<TData = Record<string, any>, TExten
incremental?: never;
}

// @public (undocumented)
// @public @deprecated (undocumented)
export type ExecutionPatchResult<TData = Record<string, any>, TExtensions = Record<string, any>> = ExecutionPatchInitialResult<TData, TExtensions> | ExecutionPatchIncrementalResult<TData, TExtensions>;

// @public (undocumented)
Expand Down Expand Up @@ -993,10 +993,10 @@ TData
// @public (undocumented)
export const from: typeof ApolloLink.from;

// @public (undocumented)
// @public @deprecated (undocumented)
export function fromError<T>(errorValue: any): Observable<T>;

// @public (undocumented)
// @public @deprecated (undocumented)
export function fromPromise<T>(promise: Promise<T>): Observable<T>;

// @internal
Expand Down Expand Up @@ -1142,7 +1142,7 @@ interface IgnoreModifier {
// @public (undocumented)
const _ignoreModifier: unique symbol;

// @public (undocumented)
// @public @deprecated (undocumented)
export interface IncrementalPayload<TData, TExtensions> {
// (undocumented)
data: TData | null;
Expand Down Expand Up @@ -1253,7 +1253,7 @@ export interface InternalRefetchQueriesOptions<TCache extends ApolloCache<any>,
}

// @public (undocumented)
export type InternalRefetchQueriesResult<TResult> = TResult extends boolean ? Promise<ApolloQueryResult<any>> : TResult;
export type InternalRefetchQueriesResult<TResult> = TResult extends boolean ? Promise<InteropApolloQueryResult<any>> : TResult;

// @public (undocumented)
export type InternalRefetchQueryDescriptor = RefetchQueryDescriptor | QueryOptions;
Expand Down Expand Up @@ -1335,7 +1335,7 @@ const _invalidateModifier: unique symbol;
// @public (undocumented)
type IsAny<T> = 0 extends 1 & T ? true : false;

// @public (undocumented)
// @public @deprecated (undocumented)
export function isApolloError(err: Error): err is ApolloError;

// @public
Expand Down Expand Up @@ -1646,7 +1646,7 @@ export type MutationQueryReducersMap<T = {

// Warning: (ae-forgotten-export) The symbol "MutationBaseOptions" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
interface MutationSharedOptions<TData = any, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache<any> = ApolloCache<any>> extends MutationBaseOptions<TData, TVariables, TContext, TCache> {
fetchPolicy?: MutationFetchPolicy;
keepRootFields?: boolean;
Expand Down Expand Up @@ -1767,9 +1767,9 @@ export class ObservableQuery<TData = any, TVariables extends OperationVariables
}): Promise<InteropApolloQueryResult<MaybeMasked<TFetchData>>>;
// (undocumented)
getCurrentResult(saveAsLastResult?: boolean): ApolloQueryResult<MaybeMasked<TData>>;
// (undocumented)
// @deprecated (undocumented)
getLastError(variablesMustMatch?: boolean): ApolloError | undefined;
// (undocumented)
// @deprecated (undocumented)
getLastResult(variablesMustMatch?: boolean): ApolloQueryResult<TData> | undefined;
// (undocumented)
hasObservers(): boolean;
Expand All @@ -1781,7 +1781,7 @@ export class ObservableQuery<TData = any, TVariables extends OperationVariables
readonly options: WatchQueryOptions<TVariables, TData>;
// (undocumented)
get query(): TypedDocumentNode<TData, TVariables>;
// (undocumented)
// @deprecated (undocumented)
readonly queryId: string;
// (undocumented)
readonly queryName?: string;
Expand All @@ -1794,21 +1794,21 @@ export class ObservableQuery<TData = any, TVariables extends OperationVariables
reobserveAsConcast(newOptions?: Partial<WatchQueryOptions<TVariables, TData>>, newNetworkStatus?: NetworkStatus): Concast<ApolloQueryResult<TData>>;
// @internal (undocumented)
resetDiff(): void;
// (undocumented)
// @deprecated (undocumented)
resetLastResults(): void;
// @internal (undocumented)
protected resetNotifications(): void;
// (undocumented)
// @deprecated (undocumented)
resetQueryStoreErrors(): void;
// (undocumented)
resubscribeAfterError(onNext: (value: ApolloQueryResult<MaybeMasked<TData>>) => void, onError?: (error: any) => void, onComplete?: () => void): ObservableSubscription;
// (undocumented)
resubscribeAfterError(observer: Observer<ApolloQueryResult<TData>>): ObservableSubscription;
// (undocumented)
// @deprecated (undocumented)
result(): Promise<ApolloQueryResult<MaybeMasked<TData>>>;
// @internal (undocumented)
protected scheduleNotify(): void;
// (undocumented)
// @deprecated (undocumented)
setOptions(newOptions: Partial<WatchQueryOptions<TVariables, TData>>): Promise<InteropApolloQueryResult<MaybeMasked<TData>>>;
setVariables(variables: TVariables): Promise<InteropApolloQueryResult<MaybeMasked<TData>> | void>;
// (undocumented)
Expand Down Expand Up @@ -1862,7 +1862,7 @@ type OptionsUnion<TData, TVariables extends OperationVariables, TContext> = Watc
// @public (undocumented)
export function parseAndCheckHttpResponse(operations: Operation | Operation[]): (response: Response) => Promise<any>;

// @public (undocumented)
// @public @deprecated (undocumented)
export type Path = ReadonlyArray<string | number>;

// @public (undocumented)
Expand Down Expand Up @@ -2230,7 +2230,7 @@ export interface RefetchQueriesOptions<TCache extends ApolloCache<any>, TResult>
// Warning: (ae-forgotten-export) The symbol "IsStrictlyAny" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export type RefetchQueriesPromiseResults<TResult> = IsStrictlyAny<TResult> extends true ? any[] : TResult extends boolean ? ApolloQueryResult<any>[] : TResult extends PromiseLike<infer U> ? U[] : TResult[];
export type RefetchQueriesPromiseResults<TResult> = IsStrictlyAny<TResult> extends true ? any[] : TResult extends boolean ? InteropApolloQueryResult<any>[] : TResult extends PromiseLike<infer U> ? U[] : TResult[];

// @public (undocumented)
export interface RefetchQueriesResult<TResult> extends Promise<RefetchQueriesPromiseResults<TResult>> {
Expand Down Expand Up @@ -2439,10 +2439,10 @@ export interface SubscriptionOptions<TVariables = OperationVariables, TData = an
// @public (undocumented)
type takeOneFromUnion<T> = unionToIntersection<T extends T ? (x: T) => 0 : never> extends ((x: infer U) => 0) ? U : never;

// @public (undocumented)
// @public @deprecated (undocumented)
export const throwServerError: (response: Response, result: any, message: string) => never;

// @public (undocumented)
// @public @deprecated (undocumented)
export function toPromise<R>(observable: Observable<R>): Promise<R>;

// @public (undocumented)
Expand Down Expand Up @@ -2611,8 +2611,8 @@ interface WriteContext extends ReadMergeModifyContext {
// src/cache/inmemory/policies.ts:162:3 - (ae-forgotten-export) The symbol "KeySpecifier" needs to be exported by the entry point index.d.ts
// src/cache/inmemory/policies.ts:162:3 - (ae-forgotten-export) The symbol "KeyArgsFunction" needs to be exported by the entry point index.d.ts
// src/cache/inmemory/types.ts:139:3 - (ae-forgotten-export) The symbol "KeyFieldsFunction" needs to be exported by the entry point index.d.ts
// src/core/ObservableQuery.ts:130:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
// src/core/ObservableQuery.ts:131:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
// src/core/ObservableQuery.ts:143:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
// src/core/ObservableQuery.ts:144:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
// src/core/QueryManager.ts:160:5 - (ae-forgotten-export) The symbol "MutationStoreValue" needs to be exported by the entry point index.d.ts
// src/core/QueryManager.ts:415:7 - (ae-forgotten-export) The symbol "UpdateQueries" needs to be exported by the entry point index.d.ts
// src/link/http/selectHttpOptionsAndBody.ts:128:32 - (ae-forgotten-export) The symbol "HttpQueryOptions" needs to be exported by the entry point index.d.ts
Expand Down
12 changes: 6 additions & 6 deletions .api-reports/api-report-errors.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ interface DefaultContext extends Record<string, any> {

// Warning: (ae-forgotten-export) The symbol "ExecutionPatchResultBase" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data?: never;
Expand All @@ -70,7 +70,7 @@ interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TExtensio
incremental?: IncrementalPayload<TData, TExtensions>[];
}

// @public (undocumented)
// @public @deprecated (undocumented)
interface ExecutionPatchInitialResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data: TData | null | undefined;
Expand All @@ -85,7 +85,7 @@ interface ExecutionPatchInitialResult<TData = Record<string, any>, TExtensions =
// Warning: (ae-forgotten-export) The symbol "ExecutionPatchInitialResult" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "ExecutionPatchIncrementalResult" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
type ExecutionPatchResult<TData = Record<string, any>, TExtensions = Record<string, any>> = ExecutionPatchInitialResult<TData, TExtensions> | ExecutionPatchIncrementalResult<TData, TExtensions>;

// @public (undocumented)
Expand Down Expand Up @@ -115,7 +115,7 @@ export type GraphQLErrors = ReadonlyArray<GraphQLError>;
// @public (undocumented)
export function graphQLResultHasProtocolErrors<T>(result: FetchResult<T>): result is FetchResultWithSymbolExtensions<T>;

// @public (undocumented)
// @public @deprecated (undocumented)
interface IncrementalPayload<TData, TExtensions> {
// (undocumented)
data: TData | null;
Expand All @@ -131,13 +131,13 @@ interface IncrementalPayload<TData, TExtensions> {
path: Path;
}

// @public (undocumented)
// @public @deprecated (undocumented)
export function isApolloError(err: Error): err is ApolloError;

// @public (undocumented)
export type NetworkError = Error | ServerParseError | ServerError | null;

// @public (undocumented)
// @public @deprecated (undocumented)
type Path = ReadonlyArray<string | number>;

// @public (undocumented)
Expand Down
14 changes: 7 additions & 7 deletions .api-reports/api-report-link_batch-http.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ class ApolloLink {
getMemoryInternals?: () => unknown;
// @internal
readonly left?: ApolloLink;
// (undocumented)
// @deprecated (undocumented)
protected onError(error: any, observer?: Observer<FetchResult>): false | void;
// Warning: (ae-forgotten-export) The symbol "NextLink" needs to be exported by the entry point index.d.ts
//
// (undocumented)
request(operation: Operation, forward?: NextLink): Observable<FetchResult> | null;
// @internal
readonly right?: ApolloLink;
// (undocumented)
// @deprecated (undocumented)
setOnError(fn: ApolloLink["onError"]): this;
// Warning: (ae-forgotten-export) The symbol "Operation" needs to be exported by the entry point index.d.ts
//
Expand Down Expand Up @@ -97,7 +97,7 @@ interface DefaultContext extends Record<string, any> {

// Warning: (ae-forgotten-export) The symbol "ExecutionPatchResultBase" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data?: never;
Expand All @@ -111,7 +111,7 @@ interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TExtensio
incremental?: IncrementalPayload<TData, TExtensions>[];
}

// @public (undocumented)
// @public @deprecated (undocumented)
interface ExecutionPatchInitialResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data: TData | null | undefined;
Expand All @@ -126,7 +126,7 @@ interface ExecutionPatchInitialResult<TData = Record<string, any>, TExtensions =
// Warning: (ae-forgotten-export) The symbol "ExecutionPatchInitialResult" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "ExecutionPatchIncrementalResult" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
type ExecutionPatchResult<TData = Record<string, any>, TExtensions = Record<string, any>> = ExecutionPatchInitialResult<TData, TExtensions> | ExecutionPatchIncrementalResult<TData, TExtensions>;

// @public (undocumented)
Expand Down Expand Up @@ -173,7 +173,7 @@ interface HttpOptions {
useGETForQueries?: boolean;
}

// @public (undocumented)
// @public @deprecated (undocumented)
interface IncrementalPayload<TData, TExtensions> {
// (undocumented)
data: TData | null;
Expand Down Expand Up @@ -211,7 +211,7 @@ interface Operation {
variables: Record<string, any>;
}

// @public (undocumented)
// @public @deprecated (undocumented)
type Path = ReadonlyArray<string | number>;

// @public (undocumented)
Expand Down
14 changes: 7 additions & 7 deletions .api-reports/api-report-link_batch.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ class ApolloLink {
getMemoryInternals?: () => unknown;
// @internal
readonly left?: ApolloLink;
// (undocumented)
// @deprecated (undocumented)
protected onError(error: any, observer?: Observer<FetchResult>): false | void;
// Warning: (ae-forgotten-export) The symbol "NextLink" needs to be exported by the entry point index.d.ts
//
// (undocumented)
request(operation: Operation, forward?: NextLink): Observable<FetchResult> | null;
// @internal
readonly right?: ApolloLink;
// (undocumented)
// @deprecated (undocumented)
setOnError(fn: ApolloLink["onError"]): this;
// Warning: (ae-forgotten-export) The symbol "Operation" needs to be exported by the entry point index.d.ts
//
Expand Down Expand Up @@ -87,7 +87,7 @@ interface DefaultContext extends Record<string, any> {

// Warning: (ae-forgotten-export) The symbol "ExecutionPatchResultBase" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data?: never;
Expand All @@ -101,7 +101,7 @@ interface ExecutionPatchIncrementalResult<TData = Record<string, any>, TExtensio
incremental?: IncrementalPayload<TData, TExtensions>[];
}

// @public (undocumented)
// @public @deprecated (undocumented)
interface ExecutionPatchInitialResult<TData = Record<string, any>, TExtensions = Record<string, any>> extends ExecutionPatchResultBase {
// (undocumented)
data: TData | null | undefined;
Expand All @@ -116,7 +116,7 @@ interface ExecutionPatchInitialResult<TData = Record<string, any>, TExtensions =
// Warning: (ae-forgotten-export) The symbol "ExecutionPatchInitialResult" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "ExecutionPatchIncrementalResult" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
// @public @deprecated (undocumented)
type ExecutionPatchResult<TData = Record<string, any>, TExtensions = Record<string, any>> = ExecutionPatchInitialResult<TData, TExtensions> | ExecutionPatchIncrementalResult<TData, TExtensions>;

// @public (undocumented)
Expand Down Expand Up @@ -147,7 +147,7 @@ interface GraphQLRequest<TVariables = Record<string, any>> {
variables?: TVariables;
}

// @public (undocumented)
// @public @deprecated (undocumented)
interface IncrementalPayload<TData, TExtensions> {
// (undocumented)
data: TData | null;
Expand Down Expand Up @@ -200,7 +200,7 @@ export class OperationBatcher {
enqueueRequest(request: BatchableRequest): Observable<FetchResult>;
}

// @public (undocumented)
// @public @deprecated (undocumented)
type Path = ReadonlyArray<string | number>;

// @public (undocumented)
Expand Down
Loading