felicity-lims/felicity/api/gql/analytics/__init__.py

20 lines
510 B
Python
Raw Normal View History

2024-02-16 23:48:19 +08:00
from .types import (GroupCount, GroupData, GroupedCounts, GroupedData,
LaggardCounts, LaggardData, LaggardStatistics, Nothing,
ProcessCounts, ProcessData, ProcessStatistics,
ReportMetaType)
2023-08-04 13:12:43 +08:00
analytics_types = [
Nothing,
GroupCount,
GroupData,
GroupedCounts,
GroupedData,
ProcessCounts,
ProcessData,
ProcessStatistics,
LaggardCounts,
LaggardData,
LaggardStatistics,
2023-09-11 13:02:05 +08:00
ReportMetaType,
]