User Liked Comment
'/users/{id}/liked-comments'
GET
async getAll(
@param.path.string('id') id: typeof User.prototype.id,
@param.query.object('filter') filter?: Filter<Comment>,
): Promise<Comment[]>'/users/{id}/liked-comments/{commentId}'
GET
async find(
@param.path.string('id') id: string,
@param.path.number('commentId') commentId: typeof Comment.prototype.id,
): Promise<Comment>POST
DEL
Last updated