Hi!
I’m trying to use the Glide API with python to essentially replace an entire table.
For now, I’ve only managed to do it by
Getting all rows and extracting their row-id.
Looping through each row-id and making an api call per row to delete each one iindividually.
Add the new rows one at a time through separate API calls.
I’m sure there must be away to bulk delete/upload but can’t seem to figure out how.
Does anyone know. a more efficient way to do this?
I think that’s how you have to do it but you could optimize the get rows part with a query.
Byder_App:
Looping through each row-id and making an api call per row to delete each one iindividually.
Add the new rows one at a time through separate API calls.
You can optimise these 2 steps by sending multiple mutations in a single API call. There is a hard limit of 500, but it’s recommended to send batches of no more than 100.
2 Likes
system
Closed
June 23, 2023, 5:32pm
4
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.