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
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Int | Numeric identifier for the playlist. |
title | String | Title of the playlist. |
created | Date | Date when the playlist was created. |
link | String | Optional URL link for the playlist. If provided, the playlist title becomes a clickable link. |
entries | [PlaylistEntry!]! | Playlist entries with items and optional comments. |