Activity
Activities are discrete periods of time that specific work is performed on a piece of equipment. They connect a start and end time to specific goals for a machine: the part being produced (optionally including workorder information and other data points) as well as the production and setup standards.
type Activity {
activityRef: bigint
activitySet: ActivitySet
activityType: ActivityType
endAt: timestamptz
startAt: timestamptz
}
Fields
Activity.activityRef ● bigint scalar
A unique, numeric identifier for the activity.
Activity.activitySet ● ActivitySet object
Activity.activityType ● ActivityType object
Activity.endAt ● timestamptz scalar
The end of an interval. Intervals are right-exclusive.
Activity.startAt ● timestamptz scalar
The start of an interval.
Returned By
activities query
Member Of
ActivitySet object