This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
Sync Unchanged Records #705
Answered
by
adrianhall
GhayasAbouFakher
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
adrianhall
Jul 25, 2023
Replies: 1 comment 1 reply
-
Without some additional information about the way things are set up, I can't say. The search says "find records where updatedAt > 2021-05-19T08:46:40.547Z" However, some databases don't have a resolution for comparison that fine. Your database must be configured such that the comparison is on ms accuracy. Essentially, the database gets queried for this comparison and returns the record. The service just interprets this and returns it. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
GhayasAbouFakher
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Without some additional information about the way things are set up, I can't say.
The search says "find records where updatedAt > 2021-05-19T08:46:40.547Z"
The record holds the exact same date. Since it's gt and not ge, it should not be included.
However, some databases don't have a resolution for comparison that fine. Your database must be configured such that the comparison is on ms accuracy. Essentially, the database gets queried for this comparison and returns the record. The service just interprets this and returns it.