I am uploading audio files (as blobs) to firebase and each file has an attached metadata. The metadata contains a custom value reviewed that's either true or false. I want to use the list() firebase function to display said files, but I only want the files that have reviewed : false to be displayed. How can I go about this?
From what I have read you can sort/manipulate values in a child(), but I don't completely understand how to do that; instead of using metadata, is it possible to add the reviewed : false section to the child? As far as I know that can't be done since it is an audio file. I don't have any code yet to show since I don't know where to start, any help would be appreciated!