Get add/removed products in an order

Hi!

I need to get by API REST or GraphQL the products that users add o remove in a specific order.

With the next request in GraphQL I only get the first line in the event: User edited this order, but I need to know the product the user added and removed.

Version 2024-10, admin api.

{
order(id: “gid://shopify/Order/xxxxx”) {
id
events (first: 10, query: “verb:EDITED”) {
edges {
node {
id
createdAt
}
}
}
}
}
Thank you,