Post Query Functions

Back To uAdmin Functions List

In this section, we will cover the following functions in-depth listed below:

uadmin.APIPostQueryAdd

Back To Top

APIPostQueryAdd controls the data API’s post query for add commands. By default, APIPostQueryAdd returns false.

Type:

bool

uadmin.APIPostQueryAdder

Back To Top

APIPostQueryAdder is an interface for models to run after processing add function in dAPI and before returning the results. Returning false stops the rest of the process from happening.

Type:

interface

uadmin.APIPostQueryDelete

Back To Top

APIPostQueryDelete controls the data API’s post query for delete commands. By default, APIPostQueryDelete returns false.

Type:

bool

uadmin.APIPostQueryDeleter

Back To Top

APIPostQueryDeleter is an interface for models to run after processing delete function in dAPI and before returning the results. Returning false stops the rest of the process from happening.

Type:

interface

uadmin.APIPostQueryEdit

Back To Top

APIPostQueryEdit controls the data API’s post query for edit commands. By default, APIPostQueryEdit returns false.

Type:

bool

uadmin.APIPostQueryEditor

Back To Top

APIPostQueryEditor is an interface for models to run after processing edit function in dAPI and before returning the results. Returning false stops the rest of the process from happening.

Type:

interface

uadmin.APIPostQueryRead

Back To Top

APIPostQueryRead controls the data API’s post query for read commands. By default, APIPostQueryRead returns false.

Type:

bool

uadmin.APIPostQueryReader

Back To Top

APIPostQueryReader is an interface for models to run after processing read function in dAPI and before returning the results. Returning false stops the rest of the process from happening.

Type:

interface

uadmin.APIPostQuerySchema

Back To Top

APIPostQuerySchema controls the data API’s post query for schema commands. By default, APIPostQuerySchema returns false.

Type:

bool

uadmin.APIPostQuerySchemer

Back To Top

APIPostQuerySchemer is an interface for models to run after processing schema function in dAPI and before returning the results. Returning false stops the rest of the process from happening.

Type:

interface