Firebase database node "memories/" contains objects of type Memory{String name; int cost; ...} I need to get objects with specific "name" field (for example "party") and delete them or change "cost" field value in other situation. I've tried this...
memoryRef.orderByChild("party").equalTo(true).setValue(null);
error
I've read this...https://firebase.google.com/docs/reference/js/firebase.database.Query
There are only action handlers there... please help, I have feeling It should be simple...