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