A post and a page of its top-level comments.
Parameters
Output
Encoding
application/jsoncomments
array
Required
No description available.
cursor
string
Optional
No description available.
post
refapp.didpic.feed.defs#postView
Required
No description available.
Errors
PostNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "PostNotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"post",
"comments"
],
"properties": {
"post": {
"ref": "app.didpic.feed.defs#postView",
"type": "ref"
},
"cursor": {
"type": "string"
},
"comments": {
"type": "array",
"items": {
"ref": "app.didpic.feed.defs#commentView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"limit": {
"type": "integer",
"default": 30,
"maximum": 100,
"minimum": 1,
"description": "Top-level comments per page."
},
"cursor": {
"type": "string"
}
}
},
"description": "A post and a page of its top-level comments."
}