queryManyAsync | Support to query many record on an entity | entityName: string, queryParams: QueryParams, selectFields?: string[] - optional |
queryOneAsync | Support to query one record on an entity | entityName: string, queryParams: QueryParams, selectFields?: string[] - optional |
getByIdAsync | Support to get a record by id on an entity | entityName: string, id: string, selectFields?: string[] - optional |
countAsync | Support to count based on a query on an entity | entityName: string, query: string |
addAsync | Support to add a new record into an entity and return the new record | entityName: string, model: any, selectFields?: string[] - optional |
updateAsync | Support to update a record in an entity and return the updated record | entityName: string, id: string, model: any, selectFields?: string[] - optional |
deleteAsync | Support to delete a record in an entity | entityName: string, id: string |