playlist Query
Description
Retrieves a single playlist by its numeric ID. Returns the playlist with all entries populated, including item details and comments.
query playlist($id: Int!) {
playlist(id: $id) {
_id
id
title
created
link
entries {
comments
}
}
}
Variables
{
"id": 671602363565
}
Response
{
"playlist": {
"_id": "62779b516d19a9a21f32fc3a",
"id": 5752908033831,
"title": "example",
"created": 1722386669788,
"link": "example",
"entries": [
{
"comments": "example"
}
]
}
}
Arguments
| Name | Type | Description |
|---|---|---|
id | Int! | Numeric identifier of the playlist to retrieve. |