Shopify Bulk Operation with updated_at filter

I am trying to implement incremental data ingestion using the Shopify BulkOperation GraphQL query by passing an updated_at filter with the last ingestion date.

I have tried several syntax variations, but every time, it performs a full load instead of fetching only the updated records.

Here are the syntaxes I tried:

  1. (query: “‘updated_at’:>='2025-10-08T20:46:01Z’”)
  2. (query: “updated_at:>=2025-10-08T20:46:01Z”)
  3. (query: updated_at:>=2025-10-08T20:46:01Z)
  4. (query: updated_at:>=”2025-10-08T20:46:01Z")
  5. (query: updated_at:>='2025-10-08T20:46:01Z’)

Hi @Sammed_Agarkhed

Which resource are you attempting to filter on? Orders? Products?