在Item API Documentaiton中,我们可以看到可以从中进行过滤/排序的不同类型的项目。而且我只对Item.Type = 'NonInventory' OR Item.type = 'Service'
感兴趣。
SELECT * from Item where Active IN (true, false) AND Type IN ('Service', 'NonInventory')
但是我只能将所有项目作为Service
类型。甚至NonInventory
类型的item.type也为Service
。现在,如何通过检查Service
或任何其他属性来确定哪个是NonInventory
,哪个是Status
?我也想从响应中排除Categories
和Bundle
。
在API端点中传递minor_version = 42
后,我得到了正确的结果,并且只能过滤Service
和NonInventory
项目。