Skip to main content

Playlist Object

Description

Represents a curated playlist of items.

Declaration

type Playlist {
_id: ID!
id: Int
title: String
created: Date
link: String
entries: [PlaylistEntry!]!
}

Fields

NameTypeDescription
_idID!Internal database identifier.
idIntNumeric identifier for the playlist.
titleStringTitle of the playlist.
createdDateDate when the playlist was created.
linkStringOptional URL link for the playlist. If provided, the playlist title becomes a clickable link.
entries[PlaylistEntry!]!Playlist entries with items and optional comments.