Skip to content
New issue

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

Chain api calls #1149

Closed
kldeb opened this issue May 11, 2016 · 1 comment
Closed

Chain api calls #1149

kldeb opened this issue May 11, 2016 · 1 comment

Comments

@kldeb
Copy link

kldeb commented May 11, 2016

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.

@kldeb
Copy link
Author

kldeb commented May 11, 2016

Found issue #851.

@kldeb kldeb closed this as completed May 11, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant