Interface FlatObject<T>

Flat object shape — GraphQL-native, no nested {type, fields} wrap.

interface FlatObject<T = Record<string, unknown>> {
    digest: string;
    fields: T;
    objectId: string;
    type: string;
    version: string;
}

Type Parameters

  • T = Record<string, unknown>

Properties

digest: string
fields: T
objectId: string
type: string
version: string