Skip to main content

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

NameTypeDescription
titleStringTitle of the playlist.
linkStringOptional 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.