graphql-api icon indicating copy to clipboard operation
graphql-api copied to clipboard

Can not fetch data with updated_at in Search function

Open jtilala opened this issue 3 years ago • 0 comments

Hi, We are trying to create a utility using Braintree SDK and have one concern regarding data loss. The SDK-Search function (for endpoint Transaction and Customer ) supports search between given "created_at". Is there any chance to add support for search with "updated_at", because we are getting data loss for the below scenario? Scenario:

  • We have below 3 records for the given updated_at and created_at
    • record_1 (created_at: "2022-01-10", updated_at: "2022-01-13")
    • record_2 (created_at: "2022-01-12", updated_at: "2022-01-23")
    • record_3 (created_at: "2022-01-01", updated_at: "2022-01-11")
  • We want to fetch data that are updated or created between the dates "2022-01-10" to "2022-01-13".
  • We can fetch record_1 and records_2 using the SDK-Search function, but we can not achieve the same for record_3

jtilala avatar Jul 29 '22 11:07 jtilala