12
const firebase = require('@firebase/app').default;
require('@firebase/firestore')

const admin = require('firebase-admin')
const functions = require('firebase-functions')

// initialize the admin SDK...    

exports.setUpdatedDate = functions.firestore.document('/foos/{fooId}/bars/{barId}')
    .onCreate(event => {
      admin.firestore().collection('foos').doc( event.params.fooId )
            .set({
                updatedDate: firebase.firestore.FieldValue.serverTimestamp()
            }, {merge:true})
    })

Running the function shell above and I got:

Cannot encode type ([object Object]) to a Firestore Value
at Function.encodeValue (...\functions\node_modules\@google-cloud\firestore\src\document.js:772:11

so how to set server time stamp with firestore admin nodejs sdk?

Henry
  • 32,689
  • 19
  • 120
  • 221
  • 1
    It looks like you didn't initialize the admin SDK. Also, it looks like you're requiring client side SDKs. Those don't apply for Cloud Functions. You just need firebase-admin. – Doug Stevenson Dec 31 '17 at 09:36
  • @DougStevenson thx, I did actually, just didn't post it. :) – Henry Dec 31 '17 at 17:18

1 Answers1

29

You can use admin.firestore.FieldValue.serverTimestamp().

API docs: https://firebase.google.com/docs/reference/admin/node/admin.firestore.FieldValue Example usage: https://github.com/firebase/firebase-admin-node/blob/master/test/integration/firestore.js#L61

Hiranya Jayathilaka
  • 7,180
  • 1
  • 23
  • 34