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
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Int! | Numeric identifier for the playlist. |
title | String | Title of the playlist. |
link | String | URL link to the playlist. |
items | [Item] | Items in the playlist (deprecated, use entries instead). |
entries | [PlaylistEntry!]! | Playlist entries with items and comments. |