how to convert a date into timestamp in spring mongo aggregation

437 Views Asked by At

I want to know how to convert these mongo cell query into spring mongo query

{$addFields:{"creationTime":{$toLong:"$creationTime"}}}

or

{ "$group" : { "_id" : "$id","timestamp" : { "$push" : {$toLong:"$creationTime" }} } }
0

There are 0 best solutions below