
Is there a way to limit the amount of relationship items being returned and filter them by created time, to lets say return only 7 days of worth of items?

relationship one to many limit, filter.

You can't limit them at the moment

@Steven i've noticed interesting thing, if i upload an jpg/png, and request the transformed version, i get a webp just fine, but if i upload webp and request transformed version, i don't get a proper image back. html
<FileDropzone name="files" bind:files on:change={onChangeHandler}>
<svelte:fragment slot="lead"><i class="fa-solid fa-file-arrow-up text-4xl"></i></svelte:fragment>
<svelte:fragment slot="message">Drag & Drop your image here</svelte:fragment>
<svelte:fragment slot="meta">{image_name}</svelte:fragment>
</FileDropzone>
{#if image !== ""}
<img src="{image}" alt="test">
{/if}
```js
uploadArticleImage: async (file: any) => {
const upload_image = await storage.createFile('images', ID.unique(), file);
return storage.getFilePreview(
'images',
upload_image.$id,
900, 500,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
'webp'
)
.toString();
},```


this doesn't seem related to your original post. it would be best to create a separate post

[CLOSED] relationship one to many limit, filter.
Recommended threads
- Stuck in "deleting"
my parent element have relationship that doesnt exist and its stuck in "deleting", i cant delete it gives me error: Collection with the requested ID could not b...
- Help with 409 Error on Relationship Setu...
I ran into a 409 document_already_exists issue. with AppWrite so I tried to debug. Here's what I've set up: Collection A has 3 attributes and a two-way 1-to-m...
- Database Double Requesting Error.
I am getting error for creating new document in an collection with new ID.unique() then too getting error of existing document. When button is pressed one docum...
