Migrations calling HTTP
Hi, I wanted some advice on how I would have a migration call an HTTP function.
For example:
Run migration on all documents that will
Call an API, wait for the API to return
Update the document with some info returned from API call
I'm not a typescript pro, so some help would be amazing.
5 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
It doesn’t sound like you need http actions, just have your migration function be an action that fetches data and uses ctx.runMutation to update the document.
Hey! Thanks for the reply. Can you give me an example?
I can, I’ll be back at my machine in a couple of hours if no one beats me to it (on mobile)
Ran your original post through kapa in the docs (you can also chat with kapa in #ask-ai), the recommendation here looks good to me:
The proper approach for this migration scenario would be to use the scheduler to run an action after the mutation completes:
Then create an action that both makes the API call and updates the document:
Interesting, I was trying something similar and it was basically scheduling the API calls and continuing to the next batch resulting in ratelimits because the API was being bombarded with requests, but this worked for me thanks!