User Saved Post
'/users/{id}/saved-posts'
GET
async getAll(
@param.path.string('id') id: string,
@param.query.object('filter') filter?: Filter<Post>,
): Promise<Post[]>'/users/{id}/saved-posts/{postId}'
GET
async find(
@param.path.string('id') id: string,
@param.path.number('postId') postId: typeof Post.prototype.id,
): Promise<Post>POST
DEL
Last updated