Skip to main content

Playlist Object

Description

Represents a curated playlist of items.

Declaration

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

Fields

NameTypeDescription
_idID!Internal database identifier.
idInt!Numeric identifier for the playlist.
titleStringTitle of the playlist.
linkStringURL link to the playlist.
items[Item]Items in the playlist (deprecated, use entries instead).
entries[PlaylistEntry!]!Playlist entries with items and comments.