
How do image transformation billing work?
I dont believe Im transforming them, but Im looking at 50ish image transformations
Im just using
export const getFilePreview = async (fileId: string) => {
const fileUrl = storage.getFilePreview(appwriteConfig.storageId, fileId);
return fileUrl as string;
};
Also, show i be storing the entire storage.getFilePreview
returned link in my db or just my fileId
? I want to reduce bandwidth and I believe storage.getFilePreview
uses up the bandwidth (does it?)
Recommended threads
- Unable to migrate from self hosted to cl...
I'm trying to migrate my project that's currently self hosted running on version 1.6.0. I was able to migrate 3 other projects that had auth, functions, and dat...
- PROBLEMS UPLOADING IMAGE IN REACT-NATIVE...
having serious problems uploading image from react-native using expo-go to Appwrite storage. #react-native #storageupload #createfile
- Can multiple functions exist in one Appw...
Can I add more than one function in the `src/main.js` file of an Appwrite cloud function? What if the different functions depend on two separate events, speci...
