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": 1600280379413
}
Response
{
"playlist": {
"_id": "79fefa659ed8b071e8b729df",
"id": 4601790160167,
"title": "example",
"created": 1717682197067,
"link": "example",
"entries": [
{
"comments": "example"
}
]
}
}
Arguments
| Name | Type | Description |
|---|---|---|
id | Int! | Numeric identifier of the playlist to retrieve. |