felicity-lims/felicity/api/gql/inventory/__init__.py
2023-09-11 07:02:05 +02:00

45 lines
1 KiB
Python

from .types import (
StockItemType,
StockItemEdge,
StockItemCursorPage,
StockCategoryType,
HazardType,
StockUnitType,
StockPackagingType,
StockProductType,
StockProductEdge,
StockProductCursorPage,
StockOrderType,
StockOrderEdge,
StockOrderCursorPage,
StockOrderProductType,
StockTransactionType,
StockTransactionEdge,
StockTransactionCursorPage,
StockAdjustmentType,
StockAdjustmentEdge,
StockAdjustmentCursorPage,
)
inventory_types = [
StockItemType,
StockItemEdge,
StockItemCursorPage,
StockCategoryType,
HazardType,
StockUnitType,
StockPackagingType,
StockProductType,
StockProductEdge,
StockProductCursorPage,
StockOrderType,
StockOrderEdge,
StockOrderCursorPage,
StockOrderProductType,
StockTransactionType,
StockTransactionEdge,
StockTransactionCursorPage,
StockAdjustmentType,
StockAdjustmentEdge,
StockAdjustmentCursorPage,
]