Type alias EntryCollection<EntrySkeleton, Modifiers, Locales>

EntryCollection<EntrySkeleton, Modifiers, Locales>: ContentfulCollection<Entry<EntrySkeleton, Modifiers, Locales>> & {
    errors?: any[];
    includes?: {
        Asset?: any[];
        Entry?: any[];
    };
}

A collection of entries

Type Parameters

  • EntrySkeleton extends EntrySkeletonType

    Shape of entry fields used to calculate dynamic keys

  • Modifiers extends ChainModifiers = ChainModifiers

    The chain modifiers used to configure the client. They’re set automatically when using the client chain modifiers.

  • Locales extends LocaleCode = LocaleCode

    If provided for a client using allLocales modifier, response type defines locale keys for entry field values.

Type declaration

  • Optional errors?: any[]
  • Optional includes?: {
        Asset?: any[];
        Entry?: any[];
    }
    • Optional Asset?: any[]
    • Optional Entry?: any[]