Warehouse_product

Hi I want to get continues data for warehouse_product ,i tried with query using cursor but i noticed some updated data being updated in old cursor which is causing missing data. could you please help to find a way so i can pull all the data new or updated .

Query i am using it gives the data but not the updated one.
query {
warehouse_products {
request_id
complexity
data(first:10,after:“YXJyYXljb25uZWN0aW9uOiz=”) {pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
id
account_id
reserve_inventory
sell_ahead
sku
warehouse_id
warehouse_identifier
price
value
value_currency
on_hand
allocated
available
replenishment_level
reorder_level
reorder_amount created_at updated_at }
cursor
}
}
}
}

Hi @hlohani,
Please send a request id and I can take a closer look.

query {
warehouse_products(updated_from:“2021-10-10T00:42:56”,updated_to:“2021-10-10T23:59:59”) {
request_id
complexity
data(sort:"+updated_at",first:10,after:“YXJyYXljb25uZWN0aW9uOjMwOQ==”) {pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
id
account_id
reserve_inventory
sell_ahead
sku
warehouse_id
warehouse_identifier
price
value
value_currency
on_hand
allocated
available
replenishment_level
reorder_level
reorder_amount created_at updated_at }
}
}
}
}
i am using this query and instead of getting record next minute or next hours it is sending record at 2021-10-10T17:40:22 so my concern is how can i get data one after another without loosing anything?

Do you have a request-id?