Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compare two Firestore Timestamps in Cloud Functions

I'm writing update function in Firestore and I want to compare two Timestamp. I've tried multiple things but not working. Can you point me correct way of comparing two Timestamp in firestore.

exports.updateFunction = functions.firestore
    .document('xyz/{xyzId}')
    .onUpdate((change, context) => {
        var updatedXYZ = change.after.data();
        var oldXYZ = change.before.data();

        var newTimestamp = updatedXYZ.timing;
        var oldTimestamp = oldXYZ.timing;

        // I've tried following things but not working

        var result = newTimestamp === oldTimestamp; // not working
        var result = new Date(newTimestamp) - new Date(oldTimestamp); // not working

        return true;
    });

I want to check two Timestamp is same or not.

like image 274
Vicky Thakor Avatar asked Dec 05 '22 11:12

Vicky Thakor


1 Answers

Consult the API docs for Firestore's Timestamp object. Timestamp has a method called isEqual() that will compare two timestamps.

var result = newTimestamp.isEqual(oldTimestamp);
like image 168
Doug Stevenson Avatar answered Dec 30 '22 22:12

Doug Stevenson