We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to call out to 2 api endpoints for a save operation.
Is it possible to call multiple apis with the client middleware?
Here's an example:
export function saveData(data) { return { types: [SAVE_DATA, SAVE_DATA_SUCCESS, SAVE_DATA_FAIL], promise: (client) => client.post(`/api/vi/save`, { data: { data } }) }; }
Would I chain the command inside of the promise element?
I tried using Promise.all for another use case but this case the second call needs an id that is created and passed back during the first call.
The text was updated successfully, but these errors were encountered:
Found issue #851.
Sorry, something went wrong.
No branches or pull requests
I need to call out to 2 api endpoints for a save operation.
Is it possible to call multiple apis with the client middleware?
Here's an example:
Would I chain the command inside of the promise element?
I tried using Promise.all for another use case but this case the second call needs an id that is created and passed back during the first call.
The text was updated successfully, but these errors were encountered: