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