Skip to content
🚀 Rapid Application Development with the App Builder

postQuery

The postQuery hook allows developers to execute custom code after a query is performed.

Parameters

ParameterTypeDescription
tablereferenceTable instance and state.

Structure parameter table

js
table: {
	instance: *ref_to_table_api,
	state: *ref_to_table_store,
	requery: *ref_to_requery_table_function,
}

Return Value

None

✨ Simple Example of a postQuery Hook

js
((table) => {

	wpda.log.info("Message from postQuery", table)

})