onAfterUpdateQuery() 
This hook/event is called after the update query is executed by Axe API.
For example; let's assume that you try to update a user by a user id. This hook/event is called after the Axe API fetches the record to be updated.
It can be used in the UPDATE handler.
ts
import { IHookParameter } from "axe-api";
export default async (parameters: IHookParameter) => {
  // do something in here
};IHookParameters 
The following parameters can be used in the hook/event function;
| Parameter | Description | 
|---|---|
| request | Request object of Expresss | 
| response | Response object of Expresss | 
| model | Current model instance. For example; User | 
| database | Database connection instance. For example Knex.js | 
| relation | The relation definition if the route is a related route (For example api/v1/users/:userId/posts). | 
| parentModel | The parent model instance if the route is a related route (For example api/v1/users/:userId/posts). | 
| query | The Knex.js' query instance. | 
| item | The current record. | 
 Axe API
Axe API