Hey, im fetching some videos from a storage bucket...
# help
r
Hey, im fetching some videos from a storage bucket, is there any way i can fetch them by data order? since im lazyloading and fetching them on the go i can't order them client side
g
If you mean date order and they are all in a "folder" then you can use .list to get them in update or created date order. Then do the downloads off of that array.
r
Yeah i'm using .list with these parameters
though how can i get them by date
the docs doesn't seem to mention anything else other than asc and probably desc at the "order" prop
g
change column to "updated_at" instead of name
r
Yeah looks like that's it, thanks!