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:
- (query: “‘updated_at’:>='2025-10-08T20:46:01Z’”)
- (query: “updated_at:>=2025-10-08T20:46:01Z”)
- (query: updated_at:>=2025-10-08T20:46:01Z)
- (query: updated_at:>=”2025-10-08T20:46:01Z")
- (query: updated_at:>='2025-10-08T20:46:01Z’)