PlaylistUpdateInput Input
Description
Input fields for updating a playlist, including title, optional link, and entries. When updating entries, the entire entries array is replaced with the provided entries.
Declaration
input PlaylistUpdateInput {
title: String
link: String
entries: [PlaylistUpdateInputEntry]
}
Fields
| Name | Type | Description |
|---|---|---|
title | String | Title of the playlist. |
link | String | Optional link URL for the playlist. If provided, the playlist title becomes a clickable link pointing to this URL. |
entries | [PlaylistUpdateInputEntry] | List of playlist entries to replace the existing entries. Each entry contains an item reference and optional comments. If not provided, entries remain unchanged. |