Axinom Mosaic Libraries
    Preparing search index...
    ThumbnailProperty: keyof T

    A property name of the data object that will be used to access the UUID of a thumbnail image.

    The property value can be an image UUID directly or an object with the following structure: { nodes?: { imageId?: Scalars['UUID'] }[]; }

    Type Parameters

    • T

      The type of the data object containing the thumbnail property.

    // thumbnail property name 'images' for a value containing an object
    {
    images: {
    nodes: [
    {
    imageId: '12345678-1234-1234-1234-123456789012'
    }
    ]
    }
    }
    // thumbnail property name 'imageId' for a value containing a string
    {
    imageId: '12345678-1234-1234-1234-123456789012'
    }