atlas_sdk
atlas_sdk copied to clipboard
GridFS
I think gridfs support also can be implemented in this sdk.
Haven't used GridFS before. Do you have any doc links? I might give a try to implement it.
@arthur-ver you can see x/mongo gridfs implementation from here https://github.com/denodrivers/deno_mongo/tree/main/src/gridfs
big files can be chunked into multiple documents via gridfs, so we can store them in MongoDB. but i'm not sure is it possible via Atlas data api or not

According to MongoDB docs it requires a MongoDB driver, hence I'm not sure if it's possible via the Data API
the current implementation of GridFS in x/mongo doesn't do any fancy mongodb driver stuff
it should be very simple to support gridfs in atlas_sdk as it's just more of a collection of helper functions