ThumbnailProperty<T>: 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.

Example

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

Example

// thumbnail property name 'imageId' for a value containing a string
{
imageId: '12345678-1234-1234-1234-123456789012'
}

Generated using TypeDoc