80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# File 'lib/shopify_api/rest/resources/2022_04/inventory_level.rb', line 80
def all(
inventory_item_ids: nil,
location_ids: nil,
limit: nil,
updated_at_min: nil,
session: ShopifyAPI::Context.active_session,
**kwargs
)
response = base_find(
session: session,
ids: {},
params: {inventory_item_ids: inventory_item_ids, location_ids: location_ids, limit: limit, updated_at_min: updated_at_min}.merge(kwargs).compact,
)
T.cast(response, T::Array[InventoryLevel])
end
|