Interface EntryReferenceProps

interface EntryReferenceProps {
    errors?: EntryReferenceError[];
    includes?: {
        Asset?: AssetProps[];
        Entry?: EntryProps<KeyValueMap, unknown>[];
    };
    items: EntryProps<KeyValueMap, unknown>[];
    limit: number;
    skip: number;
    sys: {
        type: "Array";
    };
    total: number;
}

Hierarchy (view full)

Properties

errors?: EntryReferenceError[]
includes?: {
    Asset?: AssetProps[];
    Entry?: EntryProps<KeyValueMap, unknown>[];
}
items: EntryProps<KeyValueMap, unknown>[]
limit: number
skip: number
sys: {
    type: "Array";
}
total: number