I am currently trying to run a database query on a client side callback which is triggered by a server side callback. The output for the client side call back is the input for the same server side callback to proceed with plotting the query results.
The callbacks are such:
serverside callback (Sets up a URL for the query) → clientside callback (Processes the database query) → serverside callback (Plots the query results)
The problem I’m currently running to is that the server side callback does not get triggered by the input value change from the client side callback.
Is it even possible for the server side callbacks to get triggered when the the input value is changed on the client side?