mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 02:24:16 +00:00
926 B
926 B
sidebar_position
sidebar_position |
---|
3 |
Get my saved posts
Retrieves the saved posts of current authed user.
```js async function PostModel.getSavedPosts(payload) ```
[Object] Payload
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
trim | number | true | 0 | Trim the post index content |
limit | number | true | 10 | Limit the number of posts to fetch |
Success Response
Parameter | Type | Content |
---|---|---|
data | Array | [post_obj, ...] |
Examples
Basic usage
const posts = await PostModel.getSavedPosts({
trim: 0,
limit: 10,
})
console.log(posts)
// result: [
// { _id: "0000", user_id: "0000", message: "example text", ... },
// { _id: "0001", user_id: "0000", message: "example text", ... },
// ...
// ]