UNPKG

apollo-client

Version:
29 lines (28 loc) 1.34 kB
/// <reference types="graphql" /> import { FieldNode, InlineFragmentNode, SelectionNode, ExecutionResult } from 'graphql'; export declare function storeKeyNameFromField(field: FieldNode, variables?: Object): string; export declare function storeKeyNameFromFieldNameAndArgs(fieldName: string, args?: Object): string; export declare function resultKeyNameFromField(field: FieldNode): string; export declare function isField(selection: SelectionNode): selection is FieldNode; export declare function isInlineFragment(selection: SelectionNode): selection is InlineFragmentNode; export declare function graphQLResultHasError(result: ExecutionResult): number | undefined; export interface NormalizedCache { [dataId: string]: StoreObject; } export interface StoreObject { __typename?: string; [storeFieldKey: string]: StoreValue; } export interface IdValue { type: 'id'; id: string; generated: boolean; } export interface JsonValue { type: 'json'; json: any; } export declare type StoreValue = number | string | string[] | IdValue | JsonValue | null | undefined | void; export declare function isIdValue(idObject: StoreValue): idObject is IdValue; export declare function toIdValue(id: string, generated?: boolean): IdValue; export declare function isJsonValue(jsonObject: StoreValue): jsonObject is JsonValue;