I have a database something like this. How I want to compare the value for all users to get most value.
restaurant
    -userUid
        -stateUid
            -restaurantUid
                -price = 9
            -restaurantUid2
                -price = 10
        -stateUid2
            -restaurantUid3
                -price = 2
            
As you can see the database there,  stateUid price is 19 while stateUid2 price is only 2
So, stateUid has the most price. How to compare them and display the most one. Thank you
EDIT:
I have done something like this, and it's error at return. And the value is not working.
exports.calculateTotal = functions.database.ref('/restaurant/{userUid}/{stateUid}/{restaurantUid}')
    .onWrite((change, context) => {
        // Only edit data when it is first created.
        if (change.before.exists()) {
            return null;
        }
        // Exit when the data is deleted.
        if (!change.after.exists()) {
            return null;
        }
        //Get id
        const restaurantUid = context.params.restaurantUid;
        let totalValue = 0;
        change.after.forEach(function (item) {
            totalValue += item.child('total').val();
        });
        console.log(totalValue);
        return functions.database.ref('/priceTotal/' + restaurantUid).child('total').set(totalValue);
    });
 
     
    