Skip to content

onBeforePaginate()

This hook/event is called the before paginating items.

It can be used in the PAGINATE handler.

ts
import { IBeforePaginateContext } from "axe-api";

export default async (parameters: IBeforePaginateContext) => {
  // do something in here
};

IBeforePaginateContext

The following parameters can be used in the hook/event function;

ParameterDescription
reqAxeRequest
resAxeResponse
modelCurrent model instance. For example; User
databaseDatabase connection instance. For example Knex.js
relationThe relation definition if the route is a related route (For example api/v1/users/:userId/posts).
parentModelThe parent model instance if the route is a related route (For example api/v1/users/:userId/posts).
queryThe Knex.js' query instance.
conditionsThe conditions which has been send by the HTTP client to filter data.

Released under the MIT License.