API call to list tracked inventory items

Hi,

I’m looking to get the list of all the inventory items with “tracked” flag set to true through the API.

I could use the following GQL query to get the list of inventory items including “tracked” property, but if I’m looking for a way to provide it as a filter upfront to only get what I need, rather than retrieving all unneeded data and filtering locally:


{
inventoryItems(first:100) {
nodes {
id
sku
tracked
}
}
}

Is there any GQL or REST API options for what I’m looking for?