MCPcopy
hub / github.com/apollographql/apollo-client / IdValue

Interface IdValue

packages/apollo-utilities/src/storeUtils.ts:22–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20import { InvariantError } from 'ts-invariant';
21
22export interface IdValue {
23 type: 'id';
24 id: string;
25 generated: boolean;
26 typename: string | undefined;
27}
28
29export interface JsonValue {
30 type: 'json';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected