API Documentation

GraphQL is a powerful query language that makes your data accessible through an API. It enables your applications to ask for specific fields on a filtered set of objects and returns only the data that is requested with minimal overhead. Read more about the benefites of GraphQL on our developer hub. There you will find tutorials, guides, tipps, and complex example queries.

API Endpoints
https://api.machinemetrics.com/graphql
Headers
Authorization: Bearer <YOUR API KEY>

Authentication

The MachineMetrics GraphQL API is read-only. To interact with the API, you must have credentials. You can find a detailed example of how to set up authentication in our Getting Started Section.

Global Limits

To provide the best service availability and performance for all of our customers, we enforce API usage limits:

  • The maximum number of requests per minute and company is 1000.
  • The maximum query time is 10 seconds.
  • The returned JSON object cannot be more than three nesting levels deep (top level counting as level 1).
  • The total number of nodes (= queries + subqueries) cannot exceed 5.

Queries

activities

Response

Returns [Activity!]!

Arguments
Name Description
distinct_on - [Activity_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [Activity_order_by!] Sort the returned array by one or more fields of it's elements.
where - Activity_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Activities(
  $distinct_on: [Activity_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Activity_order_by!],
  $where: Activity_bool_exp
) {
  activities(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activityRef
    activitySet {
      ...ActivitySetFragment
    }
    activityType {
      ...ActivityTypeFragment
    }
    endAt
    startAt
  }
}
Variables
{
  "distinct_on": ["activityRef"],
  "limit": 123,
  "offset": 123,
  "order_by": [Activity_order_by],
  "where": Activity_bool_exp
}
Response
{
  "data": {
    "activities": [
      {
        "activityRef": 982312,
        "activitySet": ActivitySet,
        "activityType": ActivityType,
        "endAt": "2022-05-07T01:08:03.420Z",
        "startAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

activitySet

Response

Returns an ActivitySet

Arguments
Name Description
activitySetRef - bigint! A unique, numeric identifier for the activitySet.

Example

Query
query ActivitySet($activitySetRef: bigint!) {
  activitySet(activitySetRef: $activitySetRef) {
    activePartTimeMs
    activeTimeMs
    activities {
      ...ActivityFragment
    }
    activitySetRef
    actualParts
    closedAt
    cycleTimeMs
    expectedSetupTimeMs
    expectedUnitDurationMs
    machine {
      ...MachineTPFragment
    }
    operation {
      ...OperationFragment
    }
    optimalPartTimeMs
    partCountMultiplier
    partTimeMs
    sampleCycleCount
    samplePartCount
    touchPartTimeMs
    touchTimeMs
    workOrderId
    workOrderOperation {
      ...erpWorkOrderOperationsFragment
    }
  }
}
Variables
{"activitySetRef": 982312}
Response
{
  "data": {
    "activitySet": {
      "activePartTimeMs": 987,
      "activeTimeMs": 123,
      "activities": [Activity],
      "activitySetRef": 982312,
      "actualParts": 123.45,
      "closedAt": "2022-05-07T01:08:03.420Z",
      "cycleTimeMs": 987,
      "expectedSetupTimeMs": 123,
      "expectedUnitDurationMs": 123,
      "machine": MachineTP,
      "operation": Operation,
      "optimalPartTimeMs": 123,
      "partCountMultiplier": 123.45,
      "partTimeMs": 987,
      "sampleCycleCount": 987,
      "samplePartCount": 123,
      "touchPartTimeMs": 123,
      "touchTimeMs": 987,
      "workOrderId": "xyz789",
      "workOrderOperation": erpWorkOrderOperations
    }
  }
}

activitySets

Response

Returns [ActivitySet!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [ActivitySet_order_by!] Sort the returned array by one or more fields of it's elements.
where - ActivitySet_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ActivitySets(
  $limit: Int,
  $offset: Int,
  $order_by: [ActivitySet_order_by!],
  $where: ActivitySet_bool_exp
) {
  activitySets(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activePartTimeMs
    activeTimeMs
    activities {
      ...ActivityFragment
    }
    activitySetRef
    actualParts
    closedAt
    cycleTimeMs
    expectedSetupTimeMs
    expectedUnitDurationMs
    machine {
      ...MachineTPFragment
    }
    operation {
      ...OperationFragment
    }
    optimalPartTimeMs
    partCountMultiplier
    partTimeMs
    sampleCycleCount
    samplePartCount
    touchPartTimeMs
    touchTimeMs
    workOrderId
    workOrderOperation {
      ...erpWorkOrderOperationsFragment
    }
  }
}
Variables
{
  "limit": 123,
  "offset": 123,
  "order_by": [ActivitySet_order_by],
  "where": ActivitySet_bool_exp
}
Response
{
  "data": {
    "activitySets": [
      {
        "activePartTimeMs": 123,
        "activeTimeMs": 987,
        "activities": [Activity],
        "activitySetRef": 982312,
        "actualParts": 987.65,
        "closedAt": "2022-05-07T01:08:03.420Z",
        "cycleTimeMs": 987,
        "expectedSetupTimeMs": 987,
        "expectedUnitDurationMs": 987,
        "machine": MachineTP,
        "operation": Operation,
        "optimalPartTimeMs": 123,
        "partCountMultiplier": 123.45,
        "partTimeMs": 123,
        "sampleCycleCount": 987,
        "samplePartCount": 987,
        "touchPartTimeMs": 123,
        "touchTimeMs": 987,
        "workOrderId": "abc123",
        "workOrderOperation": erpWorkOrderOperations
      }
    ]
  }
}

activityType

Response

Returns an ActivityType

Arguments
Name Description
activityTypeRef - bigint! A unique, numeric identifier for the activityType.

Example

Query
query ActivityType($activityTypeRef: bigint!) {
  activityType(activityTypeRef: $activityTypeRef) {
    activityMode
    activityTypeRef
    company {
      ...CompanyTPFragment
    }
    name
  }
}
Variables
{"activityTypeRef": 982312}
Response
{
  "data": {
    "activityType": {
      "activityMode": "production",
      "activityTypeRef": 982312,
      "company": {"name": "Cyberdyne"},
      "name": "abc123"
    }
  }
}

activityTypes

Response

Returns [ActivityType!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [ActivityType_order_by!] Sort the returned array by one or more fields of it's elements.
where - ActivityType_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ActivityTypes(
  $limit: Int,
  $offset: Int,
  $order_by: [ActivityType_order_by!],
  $where: ActivityType_bool_exp
) {
  activityTypes(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activityMode
    activityTypeRef
    company {
      ...CompanyTPFragment
    }
    name
  }
}
Variables
{
  "limit": 123,
  "offset": 987,
  "order_by": [ActivityType_order_by],
  "where": ActivityType_bool_exp
}
Response
{
  "data": {
    "activityTypes": [
      {
        "activityMode": "production",
        "activityTypeRef": 982312,
        "company": {"name": "Cyberdyne"},
        "name": "xyz789"
      }
    ]
  }
}

aggregatedAlarms

Response

Returns [AggregatedAlarmsRT!]!

Arguments
Name Description
args - aggregatedAlarms_args A set of arguments passed to the function.
distinct_on - [AggregatedAlarmsRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [AggregatedAlarmsRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - AggregatedAlarmsRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query AggregatedAlarms(
  $args: aggregatedAlarms_args,
  $distinct_on: [AggregatedAlarmsRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AggregatedAlarmsRT_order_by!],
  $where: AggregatedAlarmsRT_bool_exp
) {
  aggregatedAlarms(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    bucketEndAt
    bucketStartAt
    description
    durationMs
    label
    machineRef
    maxEndAt
    minStartAt
    nativeCode
    recordCount
    status
  }
}
Variables
{
  "args": aggregatedAlarms_args,
  "distinct_on": ["bucketEndAt"],
  "limit": 123,
  "offset": 123,
  "order_by": [AggregatedAlarmsRT_order_by],
  "where": AggregatedAlarmsRT_bool_exp
}
Response
{
  "data": {
    "aggregatedAlarms": [
      {
        "bucketEndAt": "2022-05-07T01:08:03.420Z",
        "bucketStartAt": "2022-05-07T01:08:03.420Z",
        "description": "abc123",
        "durationMs": numeric,
        "label": "abc123",
        "machineRef": 987,
        "maxEndAt": "2022-05-07T01:08:03.420Z",
        "minStartAt": "2022-05-07T01:08:03.420Z",
        "nativeCode": "abc123",
        "recordCount": 987,
        "status": "xyz789"
      }
    ]
  }
}

aggregatedPartCounts

Response

Returns [AggregatedPartCountRT!]!

Arguments
Name Description
args - aggregatedPartCounts_args! A set of arguments passed to the function.
distinct_on - [AggregatedPartCountRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [AggregatedPartCountRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - AggregatedPartCountRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query AggregatedPartCounts(
  $args: aggregatedPartCounts_args!,
  $distinct_on: [AggregatedPartCountRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AggregatedPartCountRT_order_by!],
  $where: AggregatedPartCountRT_bool_exp
) {
  aggregatedPartCounts(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    avgValue
    bucketEndAt
    bucketStartAt
    bucketWidth
    eventCount
    firstBucketEventTime
    firstValue
    lastBucketEventTime
    lastValue
    machine {
      ...MachineTPFragment
    }
    machineRef
    maxValue
    metricKey
    minValue
    sumOfValues
  }
}
Variables
{
  "args": aggregatedPartCounts_args,
  "distinct_on": ["avgValue"],
  "limit": 987,
  "offset": 987,
  "order_by": [AggregatedPartCountRT_order_by],
  "where": AggregatedPartCountRT_bool_exp
}
Response
{
  "data": {
    "aggregatedPartCounts": [
      {
        "avgValue": 43.12,
        "bucketEndAt": "2022-05-07T01:08:03.420Z",
        "bucketStartAt": "2022-05-07T01:08:03.420Z",
        "bucketWidth": "1h",
        "eventCount": 123,
        "firstBucketEventTime": "2022-05-07T01:08:03.420Z",
        "firstValue": 987,
        "lastBucketEventTime": "2022-05-07T01:08:03.420Z",
        "lastValue": 987,
        "machine": MachineTP,
        "machineRef": 123,
        "maxValue": 123,
        "metricKey": "xyz789",
        "minValue": 987,
        "sumOfValues": 123
      }
    ]
  }
}

aggregatedQuantities

Response

Returns [AggregatedQuantityRT!]!

Arguments
Name Description
args - aggregatedQuantities_args! A set of arguments passed to the function.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [AggregatedQuantityRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - AggregatedQuantityRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query AggregatedQuantities(
  $args: aggregatedQuantities_args!,
  $limit: Int,
  $offset: Int,
  $order_by: [AggregatedQuantityRT_order_by!],
  $where: AggregatedQuantityRT_bool_exp
) {
  aggregatedQuantities(
    args: $args,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    avgValue
    bucketEndAt
    bucketStartAt
    bucketWidth
    eventCount
    firstBucketEventTime
    firstValue
    lastBucketEventTime
    lastValue
    machine {
      ...MachineTPFragment
    }
    machineRef
    maxValue
    metricKey
    minValue
    sumOfValues
  }
}
Variables
{
  "args": aggregatedQuantities_args,
  "limit": 123,
  "offset": 987,
  "order_by": [AggregatedQuantityRT_order_by],
  "where": AggregatedQuantityRT_bool_exp
}
Response
{
  "data": {
    "aggregatedQuantities": [
      {
        "avgValue": 43.12,
        "bucketEndAt": "2022-05-07T01:08:03.420Z",
        "bucketStartAt": "2022-05-07T01:08:03.420Z",
        "bucketWidth": "1h",
        "eventCount": 123,
        "firstBucketEventTime": "2022-05-07T01:08:03.420Z",
        "firstValue": 43.12,
        "lastBucketEventTime": "2022-05-07T01:08:03.420Z",
        "lastValue": 43.12,
        "machine": MachineTP,
        "machineRef": 123,
        "maxValue": 43.12,
        "metricKey": "xyz789",
        "minValue": 43.12,
        "sumOfValues": 43.12
      }
    ]
  }
}

alarmIntervals

Response

Returns [AlarmIntervalRT!]!

Arguments
Name Description
args - alarmIntervals_args! A set of arguments passed to the function.
distinct_on - [AlarmIntervalRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [AlarmIntervalRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - AlarmIntervalRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query AlarmIntervals(
  $args: alarmIntervals_args!,
  $distinct_on: [AlarmIntervalRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AlarmIntervalRT_order_by!],
  $where: AlarmIntervalRT_bool_exp
) {
  alarmIntervals(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    description
    endAt
    label
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    nativeCode
    sequence
    startAt
  }
}
Variables
{
  "args": alarmIntervals_args,
  "distinct_on": ["description"],
  "limit": 987,
  "offset": 987,
  "order_by": [AlarmIntervalRT_order_by],
  "where": AlarmIntervalRT_bool_exp
}
Response
{
  "data": {
    "alarmIntervals": [
      {
        "description": "abc123",
        "endAt": "2022-05-07T01:08:03.420Z",
        "label": "abc123",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "abc123",
        "nativeCode": "xyz789",
        "sequence": 987,
        "startAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

annotationTypes

Response

Returns [AnnotationTypeTP!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [AnnotationTypeTP_order_by!] Sort the returned array by one or more fields of it's elements.
where - AnnotationTypeTP_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query AnnotationTypes(
  $limit: Int,
  $offset: Int,
  $order_by: [AnnotationTypeTP_order_by!],
  $where: AnnotationTypeTP_bool_exp
) {
  annotationTypes(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    annotationTypeRef
    annotations {
      ...AnnotationTPFragment
    }
    color
    company {
      ...CompanyTPFragment
    }
    erpReason {
      ...erpReasonFragment
    }
    isArchived
    name
  }
}
Variables
{
  "limit": 123,
  "offset": 123,
  "order_by": [AnnotationTypeTP_order_by],
  "where": AnnotationTypeTP_bool_exp
}
Response
{
  "data": {
    "annotationTypes": [
      {
        "annotationTypeRef": 123,
        "annotations": [AnnotationTP],
        "color": "xyz789",
        "company": {"name": "Cyberdyne"},
        "erpReason": erpReason,
        "isArchived": false,
        "name": "abc123"
      }
    ]
  }
}

annotations

Response

Returns [AnnotationTP!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [AnnotationTP_order_by!] Sort the returned array by one or more fields of it's elements.
where - AnnotationTP_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Annotations(
  $limit: Int,
  $offset: Int,
  $order_by: [AnnotationTP_order_by!],
  $where: AnnotationTP_bool_exp
) {
  annotations(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    annotationRef
    annotationType {
      ...AnnotationTypeTPFragment
    }
    companyId
    description
    endAt
    isPlanned
    machine {
      ...MachineTPFragment
    }
    machineRef
    startAt
  }
}
Variables
{
  "limit": 123,
  "offset": 123,
  "order_by": [AnnotationTP_order_by],
  "where": AnnotationTP_bool_exp
}
Response
{
  "data": {
    "annotations": [
      {
        "annotationRef": 123,
        "annotationType": AnnotationTypeTP,
        "companyId": "xyz789",
        "description": "abc123",
        "endAt": "2022-05-07T01:08:03.420Z",
        "isPlanned": true,
        "machine": MachineTP,
        "machineRef": 123,
        "startAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

companies

Description

Fetch all companies accessible by the role.

Response

Returns [CompanyTP!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [CompanyTP_order_by!] Sort the returned array by one or more fields of it's elements.
where - CompanyTP_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Companies(
  $limit: Int,
  $offset: Int,
  $order_by: [CompanyTP_order_by!],
  $where: CompanyTP_bool_exp
) {
  companies(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activityTypes {
      ...ActivityTypeFragment
    }
    addressText
    annotationTypes {
      ...AnnotationTypeTPFragment
    }
    companyId
    location {
      ...LocationFragment
    }
    machines {
      ...MachineTPFragment
    }
    name
    operations {
      ...OperationFragment
    }
    operators {
      ...OperatorTPFragment
    }
    rejectReasons {
      ...RejectReasonFragment
    }
    timeZone
  }
}
Variables
{
  "limit": 123,
  "offset": 123,
  "order_by": [CompanyTP_order_by],
  "where": CompanyTP_bool_exp
}
Response
{
  "data": {
    "companies": [
      {
        "activityTypes": [ActivityType],
        "addressText": "120 Podmayer Lane, Amherst, MA 01002",
        "annotationTypes": [AnnotationTypeTP],
        "companyId": "abc123",
        "location": Location,
        "machines": [MachineTP],
        "name": "abc123",
        "operations": [Operation],
        "operators": [OperatorTP],
        "rejectReasons": [RejectReason],
        "timeZone": "xyz789"
      }
    ]
  }
}

currentAlarmsByMachine

Response

Returns [CurrentAlarmRT!]!

Arguments
Name Description
args - currentAlarmsByMachine_args A set of arguments passed to the function.
distinct_on - [CurrentAlarmRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [CurrentAlarmRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - CurrentAlarmRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query CurrentAlarmsByMachine(
  $args: currentAlarmsByMachine_args,
  $distinct_on: [CurrentAlarmRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [CurrentAlarmRT_order_by!],
  $where: CurrentAlarmRT_bool_exp
) {
  currentAlarmsByMachine(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    description
    label
    latestEventAt
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    nativeCode
    startAt
  }
}
Variables
{
  "args": currentAlarmsByMachine_args,
  "distinct_on": ["description"],
  "limit": 987,
  "offset": 123,
  "order_by": [CurrentAlarmRT_order_by],
  "where": CurrentAlarmRT_bool_exp
}
Response
{
  "data": {
    "currentAlarmsByMachine": [
      {
        "description": "xyz789",
        "label": "abc123",
        "latestEventAt": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "xyz789",
        "nativeCode": "xyz789",
        "startAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

currentStatesByMachine

Response

Returns [CurrentStateRT!]!

Arguments
Name Description
args - currentStatesByMachine_args A set of arguments passed to the function.
distinct_on - [CurrentStateRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [CurrentStateRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - CurrentStateRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query CurrentStatesByMachine(
  $args: currentStatesByMachine_args,
  $distinct_on: [CurrentStateRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [CurrentStateRT_order_by!],
  $where: CurrentStateRT_bool_exp
) {
  currentStatesByMachine(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    latestEventAt
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    startAt
    value
  }
}
Variables
{
  "args": currentStatesByMachine_args,
  "distinct_on": ["latestEventAt"],
  "limit": 987,
  "offset": 123,
  "order_by": [CurrentStateRT_order_by],
  "where": CurrentStateRT_bool_exp
}
Response
{
  "data": {
    "currentStatesByMachine": [
      {
        "latestEventAt": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "abc123",
        "startAt": "2022-05-07T01:08:03.420Z",
        "value": "xyz789"
      }
    ]
  }
}

cycleTimeStats

Response

Returns [CycleTimeStatsRT!]!

Arguments
Name Description
args - cycleTimeStats_args A set of arguments passed to the function.
distinct_on - [CycleTimeStatsRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [CycleTimeStatsRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - CycleTimeStatsRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query CycleTimeStats(
  $args: cycleTimeStats_args,
  $distinct_on: [CycleTimeStatsRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [CycleTimeStatsRT_order_by!],
  $where: CycleTimeStatsRT_bool_exp
) {
  cycleTimeStats(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    machine {
      ...MachineTPFragment
    }
    machineRef
    medianCycleTime
    operation {
      ...OperationFragment
    }
    operationId
    partCount
  }
}
Variables
{
  "args": cycleTimeStats_args,
  "distinct_on": ["machineRef"],
  "limit": 987,
  "offset": 123,
  "order_by": [CycleTimeStatsRT_order_by],
  "where": CycleTimeStatsRT_bool_exp
}
Response
{
  "data": {
    "cycleTimeStats": [
      {
        "machine": MachineTP,
        "machineRef": 123,
        "medianCycleTime": numeric,
        "operation": Operation,
        "operationId": "abc123",
        "partCount": 987
      }
    ]
  }
}

erpLaborTicket

Response

Returns an erpLaborTickets

Arguments
Name Description
laborTicketRef - bigint! A unique, numeric identifier for the laborTicket.

Example

Query
query ErpLaborTicket($laborTicketRef: bigint!) {
  erpLaborTicket(laborTicketRef: $laborTicketRef) {
    badParts
    clockIn
    clockOut
    comment
    createdAt
    goodParts
    laborTicketId
    laborTicketRef
    lot
    person {
      ...erpPersonsFragment
    }
    personId
    reasons {
      ...erpLaborTicketsReasonsFragment
    }
    resource {
      ...erpResourcesFragment
    }
    resourceId
    sequenceNumber
    split
    state
    sub
    syncedAt
    transactionDate
    type
    updatedAt
    workOrderId
    workOrderOperation {
      ...erpWorkOrderOperationsFragment
    }
  }
}
Variables
{"laborTicketRef": 982312}
Response
{
  "data": {
    "erpLaborTicket": {
      "badParts": 123.45,
      "clockIn": "2022-05-07T01:08:03.420Z",
      "clockOut": "2022-05-07T01:08:03.420Z",
      "comment": "abc123",
      "createdAt": "2022-05-07T01:08:03.420Z",
      "goodParts": 987.65,
      "laborTicketId": "xyz789",
      "laborTicketRef": 982312,
      "lot": "xyz789",
      "person": erpPersons,
      "personId": "abc123",
      "reasons": [erpLaborTicketsReasons],
      "resource": erpResources,
      "resourceId": "abc123",
      "sequenceNumber": 987.65,
      "split": "xyz789",
      "state": "abc123",
      "sub": "abc123",
      "syncedAt": "2022-05-07T01:08:03.420Z",
      "transactionDate": "2022-05-07T01:08:03.420Z",
      "type": "abc123",
      "updatedAt": "2022-05-07T01:08:03.420Z",
      "workOrderId": "abc123",
      "workOrderOperation": erpWorkOrderOperations
    }
  }
}

erpLaborTickets

Response

Returns [erpLaborTickets!]!

Arguments
Name Description
distinct_on - [erpLaborTickets_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpLaborTickets_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpLaborTickets_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpLaborTickets(
  $distinct_on: [erpLaborTickets_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpLaborTickets_order_by!],
  $where: erpLaborTickets_bool_exp
) {
  erpLaborTickets(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    badParts
    clockIn
    clockOut
    comment
    createdAt
    goodParts
    laborTicketId
    laborTicketRef
    lot
    person {
      ...erpPersonsFragment
    }
    personId
    reasons {
      ...erpLaborTicketsReasonsFragment
    }
    resource {
      ...erpResourcesFragment
    }
    resourceId
    sequenceNumber
    split
    state
    sub
    syncedAt
    transactionDate
    type
    updatedAt
    workOrderId
    workOrderOperation {
      ...erpWorkOrderOperationsFragment
    }
  }
}
Variables
{
  "distinct_on": ["badParts"],
  "limit": 123,
  "offset": 987,
  "order_by": [erpLaborTickets_order_by],
  "where": erpLaborTickets_bool_exp
}
Response
{
  "data": {
    "erpLaborTickets": [
      {
        "badParts": 987.65,
        "clockIn": "2022-05-07T01:08:03.420Z",
        "clockOut": "2022-05-07T01:08:03.420Z",
        "comment": "abc123",
        "createdAt": "2022-05-07T01:08:03.420Z",
        "goodParts": 987.65,
        "laborTicketId": "abc123",
        "laborTicketRef": 982312,
        "lot": "abc123",
        "person": erpPersons,
        "personId": "abc123",
        "reasons": [erpLaborTicketsReasons],
        "resource": erpResources,
        "resourceId": "xyz789",
        "sequenceNumber": 123.45,
        "split": "xyz789",
        "state": "abc123",
        "sub": "abc123",
        "syncedAt": "2022-05-07T01:08:03.420Z",
        "transactionDate": "2022-05-07T01:08:03.420Z",
        "type": "abc123",
        "updatedAt": "2022-05-07T01:08:03.420Z",
        "workOrderId": "xyz789",
        "workOrderOperation": erpWorkOrderOperations
      }
    ]
  }
}

erpLaborTicketsReason

Response

Returns an erpLaborTicketsReasons

Arguments
Name Description
laborTicketRef - bigint! A unique, numeric identifier for the laborTicket.
reasonRef - bigint! A unique, numeric identifier for the reason.

Example

Query
query ErpLaborTicketsReason(
  $laborTicketRef: bigint!,
  $reasonRef: bigint!
) {
  erpLaborTicketsReason(
    laborTicketRef: $laborTicketRef,
    reasonRef: $reasonRef
  ) {
    companyId
    laborTicket {
      ...erpLaborTicketsFragment
    }
    laborTicketRef
    reason {
      ...erpReasonFragment
    }
    reasonRef
  }
}
Variables
{"laborTicketRef": 982312, "reasonRef": 982312}
Response
{
  "data": {
    "erpLaborTicketsReason": {
      "companyId": "abc123",
      "laborTicket": erpLaborTickets,
      "laborTicketRef": 982312,
      "reason": erpReason,
      "reasonRef": 982312
    }
  }
}

erpLaborTicketsReasons

Response

Returns [erpLaborTicketsReasons!]!

Arguments
Name Description
distinct_on - [erpLaborTicketsReasons_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpLaborTicketsReasons_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpLaborTicketsReasons_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpLaborTicketsReasons(
  $distinct_on: [erpLaborTicketsReasons_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpLaborTicketsReasons_order_by!],
  $where: erpLaborTicketsReasons_bool_exp
) {
  erpLaborTicketsReasons(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    companyId
    laborTicket {
      ...erpLaborTicketsFragment
    }
    laborTicketRef
    reason {
      ...erpReasonFragment
    }
    reasonRef
  }
}
Variables
{
  "distinct_on": ["companyId"],
  "limit": 987,
  "offset": 123,
  "order_by": [erpLaborTicketsReasons_order_by],
  "where": erpLaborTicketsReasons_bool_exp
}
Response
{
  "data": {
    "erpLaborTicketsReasons": [
      {
        "companyId": "abc123",
        "laborTicket": erpLaborTickets,
        "laborTicketRef": 982312,
        "reason": erpReason,
        "reasonRef": 982312
      }
    ]
  }
}

erpPartOperation

Description

Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.

Response

Returns an erpPartOperations

Arguments
Name Description
companyId - String! A globally unique identifier (UUID) for the company.
method - String!
partNumber - String!
partRevision - String!
sequenceNumber - Float!

Example

Query
query ErpPartOperation(
  $companyId: String!,
  $method: String!,
  $partNumber: String!,
  $partRevision: String!,
  $sequenceNumber: Float!
) {
  erpPartOperation(
    companyId: $companyId,
    method: $method,
    partNumber: $partNumber,
    partRevision: $partRevision,
    sequenceNumber: $sequenceNumber
  ) {
    companyId
    createdAt
    cycleTimeMs
    description
    method
    part {
      ...erpPartsFragment
    }
    partName
    partNumber
    partOperationRef
    partRevision
    quantityPerPart
    resource {
      ...erpResourcesFragment
    }
    resourceId
    sequenceNumber
    setupTimeMs
    updatedAt
  }
}
Variables
{
  "companyId": "abc123",
  "method": "xyz789",
  "partNumber": "abc123",
  "partRevision": "abc123",
  "sequenceNumber": 987.65
}
Response
{
  "data": {
    "erpPartOperation": {
      "companyId": "xyz789",
      "createdAt": "2022-05-07T01:08:03.420Z",
      "cycleTimeMs": 123.45,
      "description": "xyz789",
      "method": "xyz789",
      "part": erpParts,
      "partName": "xyz789",
      "partNumber": "xyz789",
      "partOperationRef": 982312,
      "partRevision": "abc123",
      "quantityPerPart": 123.45,
      "resource": erpResources,
      "resourceId": "xyz789",
      "sequenceNumber": 987.65,
      "setupTimeMs": 987.65,
      "updatedAt": "2022-05-07T01:08:03.420Z"
    }
  }
}

erpPartOperations

Response

Returns [erpPartOperations!]!

Arguments
Name Description
distinct_on - [erpPartOperations_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpPartOperations_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpPartOperations_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpPartOperations(
  $distinct_on: [erpPartOperations_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpPartOperations_order_by!],
  $where: erpPartOperations_bool_exp
) {
  erpPartOperations(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    companyId
    createdAt
    cycleTimeMs
    description
    method
    part {
      ...erpPartsFragment
    }
    partName
    partNumber
    partOperationRef
    partRevision
    quantityPerPart
    resource {
      ...erpResourcesFragment
    }
    resourceId
    sequenceNumber
    setupTimeMs
    updatedAt
  }
}
Variables
{
  "distinct_on": ["companyId"],
  "limit": 987,
  "offset": 123,
  "order_by": [erpPartOperations_order_by],
  "where": erpPartOperations_bool_exp
}
Response
{
  "data": {
    "erpPartOperations": [
      {
        "companyId": "xyz789",
        "createdAt": "2022-05-07T01:08:03.420Z",
        "cycleTimeMs": 123.45,
        "description": "abc123",
        "method": "abc123",
        "part": erpParts,
        "partName": "xyz789",
        "partNumber": "xyz789",
        "partOperationRef": 982312,
        "partRevision": "abc123",
        "quantityPerPart": 987.65,
        "resource": erpResources,
        "resourceId": "abc123",
        "sequenceNumber": 123.45,
        "setupTimeMs": 987.65,
        "updatedAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

erpParts

Response

Returns [erpParts!]!

Arguments
Name Description
distinct_on - [erpParts_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpParts_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpParts_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpParts(
  $distinct_on: [erpParts_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpParts_order_by!],
  $where: erpParts_bool_exp
) {
  erpParts(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    createdAt
    method
    partNumber
    partOperations {
      ...erpPartOperationsFragment
    }
    partRevision
    updatedAt
    workOrders {
      ...erpWorkOrderFragment
    }
  }
}
Variables
{
  "distinct_on": ["createdAt"],
  "limit": 123,
  "offset": 987,
  "order_by": [erpParts_order_by],
  "where": erpParts_bool_exp
}
Response
{
  "data": {
    "erpParts": [
      {
        "createdAt": "2022-05-07T01:08:03.420Z",
        "method": "abc123",
        "partNumber": "xyz789",
        "partOperations": [erpPartOperations],
        "partRevision": "xyz789",
        "updatedAt": "2022-05-07T01:08:03.420Z",
        "workOrders": [erpWorkOrder]
      }
    ]
  }
}

erpPersons

Response

Returns [erpPersons!]!

Arguments
Name Description
distinct_on - [erpPersons_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpPersons_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpPersons_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpPersons(
  $distinct_on: [erpPersons_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpPersons_order_by!],
  $where: erpPersons_bool_exp
) {
  erpPersons(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    createdAt
    firstName
    isActive
    laborTickets {
      ...erpLaborTicketsFragment
    }
    lastName
    personId
    updatedAt
  }
}
Variables
{
  "distinct_on": ["createdAt"],
  "limit": 123,
  "offset": 987,
  "order_by": [erpPersons_order_by],
  "where": erpPersons_bool_exp
}
Response
{
  "data": {
    "erpPersons": [
      {
        "createdAt": "2022-05-07T01:08:03.420Z",
        "firstName": "abc123",
        "isActive": true,
        "laborTickets": [erpLaborTickets],
        "lastName": "xyz789",
        "personId": "xyz789",
        "updatedAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

erpReason

Response

Returns an erpReason

Arguments
Name Description
reasonRef - bigint! A unique, numeric identifier for the reason.

Example

Query
query ErpReason($reasonRef: bigint!) {
  erpReason(reasonRef: $reasonRef) {
    annotationType {
      ...AnnotationTypeTPFragment
    }
    annotationTypeRef
    category
    code
    companyId
    createdAt
    description
    entityType
    laborTickets {
      ...erpLaborTicketsReasonsFragment
    }
    reasonId
    reasonRef
    rejectReason {
      ...RejectReasonFragment
    }
    rejectReasonRef
    updatedAt
  }
}
Variables
{"reasonRef": 982312}
Response
{
  "data": {
    "erpReason": {
      "annotationType": AnnotationTypeTP,
      "annotationTypeRef": 123,
      "category": "xyz789",
      "code": "abc123",
      "companyId": "abc123",
      "createdAt": "2022-05-07T01:08:03.420Z",
      "description": "xyz789",
      "entityType": "abc123",
      "laborTickets": [erpLaborTicketsReasons],
      "reasonId": "xyz789",
      "reasonRef": 982312,
      "rejectReason": RejectReason,
      "rejectReasonRef": 123,
      "updatedAt": "2022-05-07T01:08:03.420Z"
    }
  }
}

erpReasons

Response

Returns [erpReason!]!

Arguments
Name Description
distinct_on - [erpReason_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpReason_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpReason_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpReasons(
  $distinct_on: [erpReason_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpReason_order_by!],
  $where: erpReason_bool_exp
) {
  erpReasons(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    annotationType {
      ...AnnotationTypeTPFragment
    }
    annotationTypeRef
    category
    code
    companyId
    createdAt
    description
    entityType
    laborTickets {
      ...erpLaborTicketsReasonsFragment
    }
    reasonId
    reasonRef
    rejectReason {
      ...RejectReasonFragment
    }
    rejectReasonRef
    updatedAt
  }
}
Variables
{
  "distinct_on": ["annotationTypeRef"],
  "limit": 987,
  "offset": 123,
  "order_by": [erpReason_order_by],
  "where": erpReason_bool_exp
}
Response
{
  "data": {
    "erpReasons": [
      {
        "annotationType": AnnotationTypeTP,
        "annotationTypeRef": 987,
        "category": "abc123",
        "code": "xyz789",
        "companyId": "xyz789",
        "createdAt": "2022-05-07T01:08:03.420Z",
        "description": "abc123",
        "entityType": "abc123",
        "laborTickets": [erpLaborTicketsReasons],
        "reasonId": "abc123",
        "reasonRef": 982312,
        "rejectReason": RejectReason,
        "rejectReasonRef": 987,
        "updatedAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

erpResourceGroupMembersip

Response

Returns an erpResourceGroupMembersips

Arguments
Name Description
hasMemberCompanyId - String! A globally unique identifier (UUID) for the hasMemberCompany.
hasMemberResourceId - String! A globally unique identifier (UUID) for the hasMemberResource.
memberOfCompanyId - String! A globally unique identifier (UUID) for the memberOfCompany.
memberOfResourceId - String! A globally unique identifier (UUID) for the memberOfResource.

Example

Query
query ErpResourceGroupMembersip(
  $hasMemberCompanyId: String!,
  $hasMemberResourceId: String!,
  $memberOfCompanyId: String!,
  $memberOfResourceId: String!
) {
  erpResourceGroupMembersip(
    hasMemberCompanyId: $hasMemberCompanyId,
    hasMemberResourceId: $hasMemberResourceId,
    memberOfCompanyId: $memberOfCompanyId,
    memberOfResourceId: $memberOfResourceId
  ) {
    createdAt
    hasMemberCompanyId
    hasMemberResourceId
    memberOfCompanyId
    memberOfResourceId
    resourceGroup {
      ...erpResourcesFragment
    }
    resourceGroupMember {
      ...erpResourcesFragment
    }
    updatedAt
  }
}
Variables
{
  "hasMemberCompanyId": "abc123",
  "hasMemberResourceId": "abc123",
  "memberOfCompanyId": "abc123",
  "memberOfResourceId": "abc123"
}
Response
{
  "data": {
    "erpResourceGroupMembersip": {
      "createdAt": "2022-05-07T01:08:03.420Z",
      "hasMemberCompanyId": "xyz789",
      "hasMemberResourceId": "abc123",
      "memberOfCompanyId": "xyz789",
      "memberOfResourceId": "xyz789",
      "resourceGroup": erpResources,
      "resourceGroupMember": erpResources,
      "updatedAt": "2022-05-07T01:08:03.420Z"
    }
  }
}

erpResourceGroupMembersips

Arguments
Name Description
distinct_on - [erpResourceGroupMembersips_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpResourceGroupMembersips_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpResourceGroupMembersips_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpResourceGroupMembersips(
  $distinct_on: [erpResourceGroupMembersips_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpResourceGroupMembersips_order_by!],
  $where: erpResourceGroupMembersips_bool_exp
) {
  erpResourceGroupMembersips(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    createdAt
    hasMemberCompanyId
    hasMemberResourceId
    memberOfCompanyId
    memberOfResourceId
    resourceGroup {
      ...erpResourcesFragment
    }
    resourceGroupMember {
      ...erpResourcesFragment
    }
    updatedAt
  }
}
Variables
{
  "distinct_on": ["createdAt"],
  "limit": 123,
  "offset": 123,
  "order_by": [erpResourceGroupMembersips_order_by],
  "where": erpResourceGroupMembersips_bool_exp
}
Response
{
  "data": {
    "erpResourceGroupMembersips": [
      {
        "createdAt": "2022-05-07T01:08:03.420Z",
        "hasMemberCompanyId": "abc123",
        "hasMemberResourceId": "abc123",
        "memberOfCompanyId": "xyz789",
        "memberOfResourceId": "xyz789",
        "resourceGroup": erpResources,
        "resourceGroupMember": erpResources,
        "updatedAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

erpResources

Response

Returns [erpResources!]!

Arguments
Name Description
distinct_on - [erpResources_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpResources_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpResources_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpResources(
  $distinct_on: [erpResources_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpResources_order_by!],
  $where: erpResources_bool_exp
) {
  erpResources(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    createdAt
    description
    isResourceGroup
    laborTickets {
      ...erpLaborTicketsFragment
    }
    machineGroupId
    machineRef
    name
    partOperations {
      ...erpPartOperationsFragment
    }
    productionBurdenRateHourly
    resourceGroupMembers {
      ...erpResourceGroupMembersipsFragment
    }
    resourceGroups {
      ...erpResourceGroupMembersipsFragment
    }
    resourceId
    setupBurdenRateHourly
    type
    updatedAt
    workOrderOperations {
      ...erpWorkOrderOperationsFragment
    }
  }
}
Variables
{
  "distinct_on": ["createdAt"],
  "limit": 123,
  "offset": 123,
  "order_by": [erpResources_order_by],
  "where": erpResources_bool_exp
}
Response
{
  "data": {
    "erpResources": [
      {
        "createdAt": "2022-05-07T01:08:03.420Z",
        "description": "abc123",
        "isResourceGroup": false,
        "laborTickets": [erpLaborTickets],
        "machineGroupId": "abc123",
        "machineRef": 123,
        "name": "xyz789",
        "partOperations": [erpPartOperations],
        "productionBurdenRateHourly": 123.45,
        "resourceGroupMembers": [
          erpResourceGroupMembersips
        ],
        "resourceGroups": [erpResourceGroupMembersips],
        "resourceId": "xyz789",
        "setupBurdenRateHourly": 123.45,
        "type": "xyz789",
        "updatedAt": "2022-05-07T01:08:03.420Z",
        "workOrderOperations": [erpWorkOrderOperations]
      }
    ]
  }
}

erpWorkOrder

Response

Returns an erpWorkOrder

Arguments
Name Description
companyId - String! A globally unique identifier (UUID) for the company.
lot - String!
split - String!
sub - String!
workOrderId - String! A globally unique identifier (UUID) for the workOrder.

Example

Query
query ErpWorkOrder(
  $companyId: String!,
  $lot: String!,
  $split: String!,
  $sub: String!,
  $workOrderId: String!
) {
  erpWorkOrder(
    companyId: $companyId,
    lot: $lot,
    split: $split,
    sub: $sub,
    workOrderId: $workOrderId
  ) {
    closedDate
    companyId
    createdAt
    description
    dueDate
    lot
    method
    part {
      ...erpPartsFragment
    }
    partNumber
    partRevision
    quantityRequired
    scheduledEndDate
    scheduledStartDate
    split
    status
    sub
    updatedAt
    workOrderId
    workOrderOperations {
      ...erpWorkOrderOperationsFragment
    }
  }
}
Variables
{
  "companyId": "abc123",
  "lot": "abc123",
  "split": "xyz789",
  "sub": "abc123",
  "workOrderId": "abc123"
}
Response
{
  "data": {
    "erpWorkOrder": {
      "closedDate": "2022-05-07T01:08:03.420Z",
      "companyId": "abc123",
      "createdAt": "2022-05-07T01:08:03.420Z",
      "description": "xyz789",
      "dueDate": "2022-05-07T01:08:03.420Z",
      "lot": "xyz789",
      "method": "abc123",
      "part": erpParts,
      "partNumber": "xyz789",
      "partRevision": "abc123",
      "quantityRequired": 987.65,
      "scheduledEndDate": "2022-05-07T01:08:03.420Z",
      "scheduledStartDate": "2022-05-07T01:08:03.420Z",
      "split": "xyz789",
      "status": "xyz789",
      "sub": "xyz789",
      "updatedAt": "2022-05-07T01:08:03.420Z",
      "workOrderId": "abc123",
      "workOrderOperations": [erpWorkOrderOperations]
    }
  }
}

erpWorkOrderOperation

Description

Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.

Response

Returns an erpWorkOrderOperations

Arguments
Name Description
workOrderOperationRef - bigint! A unique, numeric identifier for the workOrderOperation.

Example

Query
query ErpWorkOrderOperation($workOrderOperationRef: bigint!) {
  erpWorkOrderOperation(workOrderOperationRef: $workOrderOperationRef) {
    activitySet {
      ...ActivitySetFragment
    }
    closedDate
    companyId
    createdAt
    cycleTimeMs
    expectedRejectRate
    finishQuantity
    laborTickets {
      ...erpLaborTicketsFragment
    }
    lot
    matchingPartOperations {
      ...erpPartOperationsFragment
    }
    operationType
    productionburdenRateHourly
    quantityPerPart
    resource {
      ...erpResourcesFragment
    }
    resourceId
    scheduledFinishDate
    scheduledStartDate
    sequenceNumber
    setupTimeMs
    setupburdenRatehourly
    split
    startQuantity
    status
    sub
    updatedAt
    workOrder {
      ...erpWorkOrderFragment
    }
    workOrderId
    workOrderOperationRef
  }
}
Variables
{"workOrderOperationRef": 982312}
Response
{
  "data": {
    "erpWorkOrderOperation": {
      "activitySet": ActivitySet,
      "closedDate": "2022-05-07T01:08:03.420Z",
      "companyId": "xyz789",
      "createdAt": "2022-05-07T01:08:03.420Z",
      "cycleTimeMs": 982312,
      "expectedRejectRate": 123.45,
      "finishQuantity": 987.65,
      "laborTickets": [erpLaborTickets],
      "lot": "xyz789",
      "matchingPartOperations": [erpPartOperations],
      "operationType": "xyz789",
      "productionburdenRateHourly": 987.65,
      "quantityPerPart": 982312,
      "resource": erpResources,
      "resourceId": "abc123",
      "scheduledFinishDate": "2022-05-07T01:08:03.420Z",
      "scheduledStartDate": "2022-05-07T01:08:03.420Z",
      "sequenceNumber": 987.65,
      "setupTimeMs": 982312,
      "setupburdenRatehourly": 123.45,
      "split": "abc123",
      "startQuantity": 123.45,
      "status": "xyz789",
      "sub": "xyz789",
      "updatedAt": "2022-05-07T01:08:03.420Z",
      "workOrder": erpWorkOrder,
      "workOrderId": "xyz789",
      "workOrderOperationRef": 982312
    }
  }
}

erpWorkOrderOperations

Response

Returns [erpWorkOrderOperations!]!

Arguments
Name Description
distinct_on - [erpWorkOrderOperations_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpWorkOrderOperations_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpWorkOrderOperations_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpWorkOrderOperations(
  $distinct_on: [erpWorkOrderOperations_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpWorkOrderOperations_order_by!],
  $where: erpWorkOrderOperations_bool_exp
) {
  erpWorkOrderOperations(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activitySet {
      ...ActivitySetFragment
    }
    closedDate
    companyId
    createdAt
    cycleTimeMs
    expectedRejectRate
    finishQuantity
    laborTickets {
      ...erpLaborTicketsFragment
    }
    lot
    matchingPartOperations {
      ...erpPartOperationsFragment
    }
    operationType
    productionburdenRateHourly
    quantityPerPart
    resource {
      ...erpResourcesFragment
    }
    resourceId
    scheduledFinishDate
    scheduledStartDate
    sequenceNumber
    setupTimeMs
    setupburdenRatehourly
    split
    startQuantity
    status
    sub
    updatedAt
    workOrder {
      ...erpWorkOrderFragment
    }
    workOrderId
    workOrderOperationRef
  }
}
Variables
{
  "distinct_on": ["closedDate"],
  "limit": 987,
  "offset": 987,
  "order_by": [erpWorkOrderOperations_order_by],
  "where": erpWorkOrderOperations_bool_exp
}
Response
{
  "data": {
    "erpWorkOrderOperations": [
      {
        "activitySet": ActivitySet,
        "closedDate": "2022-05-07T01:08:03.420Z",
        "companyId": "xyz789",
        "createdAt": "2022-05-07T01:08:03.420Z",
        "cycleTimeMs": 982312,
        "expectedRejectRate": 987.65,
        "finishQuantity": 123.45,
        "laborTickets": [erpLaborTickets],
        "lot": "xyz789",
        "matchingPartOperations": [erpPartOperations],
        "operationType": "xyz789",
        "productionburdenRateHourly": 123.45,
        "quantityPerPart": 982312,
        "resource": erpResources,
        "resourceId": "abc123",
        "scheduledFinishDate": "2022-05-07T01:08:03.420Z",
        "scheduledStartDate": "2022-05-07T01:08:03.420Z",
        "sequenceNumber": 987.65,
        "setupTimeMs": 982312,
        "setupburdenRatehourly": 123.45,
        "split": "xyz789",
        "startQuantity": 123.45,
        "status": "xyz789",
        "sub": "abc123",
        "updatedAt": "2022-05-07T01:08:03.420Z",
        "workOrder": erpWorkOrder,
        "workOrderId": "abc123",
        "workOrderOperationRef": 982312
      }
    ]
  }
}

erpWorkOrders

Response

Returns [erpWorkOrder!]!

Arguments
Name Description
distinct_on - [erpWorkOrder_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [erpWorkOrder_order_by!] Sort the returned array by one or more fields of it's elements.
where - erpWorkOrder_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query ErpWorkOrders(
  $distinct_on: [erpWorkOrder_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [erpWorkOrder_order_by!],
  $where: erpWorkOrder_bool_exp
) {
  erpWorkOrders(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    closedDate
    companyId
    createdAt
    description
    dueDate
    lot
    method
    part {
      ...erpPartsFragment
    }
    partNumber
    partRevision
    quantityRequired
    scheduledEndDate
    scheduledStartDate
    split
    status
    sub
    updatedAt
    workOrderId
    workOrderOperations {
      ...erpWorkOrderOperationsFragment
    }
  }
}
Variables
{
  "distinct_on": ["closedDate"],
  "limit": 123,
  "offset": 123,
  "order_by": [erpWorkOrder_order_by],
  "where": erpWorkOrder_bool_exp
}
Response
{
  "data": {
    "erpWorkOrders": [
      {
        "closedDate": "2022-05-07T01:08:03.420Z",
        "companyId": "abc123",
        "createdAt": "2022-05-07T01:08:03.420Z",
        "description": "xyz789",
        "dueDate": "2022-05-07T01:08:03.420Z",
        "lot": "xyz789",
        "method": "xyz789",
        "part": erpParts,
        "partNumber": "xyz789",
        "partRevision": "abc123",
        "quantityRequired": 123.45,
        "scheduledEndDate": "2022-05-07T01:08:03.420Z",
        "scheduledStartDate": "2022-05-07T01:08:03.420Z",
        "split": "abc123",
        "status": "abc123",
        "sub": "abc123",
        "updatedAt": "2022-05-07T01:08:03.420Z",
        "workOrderId": "xyz789",
        "workOrderOperations": [erpWorkOrderOperations]
      }
    ]
  }
}

events

Response

Returns [Event!]!

Arguments
Name Description
distinct_on - [Event_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [Event_order_by!] Sort the returned array by one or more fields of it's elements.
where - Event_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Events(
  $distinct_on: [Event_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Event_order_by!],
  $where: Event_bool_exp
) {
  events(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    eventTime
    machineRef
    metricKey
    sequence
    value
  }
}
Variables
{
  "distinct_on": ["eventTime"],
  "limit": 123,
  "offset": 987,
  "order_by": [Event_order_by],
  "where": Event_bool_exp
}
Response
{
  "data": {
    "events": [
      {
        "eventTime": "2022-05-07T01:08:03.420Z",
        "machineRef": 987,
        "metricKey": "xyz789",
        "sequence": 123,
        "value": jsonb
      }
    ]
  }
}

latestPositionsByMachine

Response

Returns [LatestPositionRT!]!

Arguments
Name Description
args - latestPositionsByMachine_args A set of arguments passed to the function.
distinct_on - [LatestPositionRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [LatestPositionRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - LatestPositionRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query LatestPositionsByMachine(
  $args: latestPositionsByMachine_args,
  $distinct_on: [LatestPositionRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [LatestPositionRT_order_by!],
  $where: LatestPositionRT_bool_exp
) {
  latestPositionsByMachine(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    eventTime
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    x
    y
    z
  }
}
Variables
{
  "args": latestPositionsByMachine_args,
  "distinct_on": ["eventTime"],
  "limit": 987,
  "offset": 987,
  "order_by": [LatestPositionRT_order_by],
  "where": LatestPositionRT_bool_exp
}
Response
{
  "data": {
    "latestPositionsByMachine": [
      {
        "eventTime": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "xyz789",
        "x": 43.12,
        "y": 43.12,
        "z": 43.12
      }
    ]
  }
}

latestQuantitiesByMachine

Response

Returns [LatestQuantityRT!]!

Arguments
Name Description
args - latestQuantitiesByMachine_args A set of arguments passed to the function.
distinct_on - [LatestQuantityRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
where - LatestQuantityRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query LatestQuantitiesByMachine(
  $args: latestQuantitiesByMachine_args,
  $distinct_on: [LatestQuantityRT_select_column!],
  $limit: Int,
  $offset: Int,
  $where: LatestQuantityRT_bool_exp
) {
  latestQuantitiesByMachine(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    where: $where
  ) {
    eventTime
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    sequence
    value
  }
}
Variables
{
  "args": latestQuantitiesByMachine_args,
  "distinct_on": ["eventTime"],
  "limit": 123,
  "offset": 123,
  "where": LatestQuantityRT_bool_exp
}
Response
{
  "data": {
    "latestQuantitiesByMachine": [
      {
        "eventTime": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "abc123",
        "sequence": 123,
        "value": 43.12
      }
    ]
  }
}

location

Response

Returns a Location

Arguments
Name Description
locationRef - Int! A unique, numeric identifier for the location.

Example

Query
query Location($locationRef: Int!) {
  location(locationRef: $locationRef) {
    company {
      ...CompanyTPFragment
    }
    companyId
    locationRef
  }
}
Variables
{"locationRef": 123}
Response
{
  "data": {
    "location": {
      "company": {"name": "Cyberdyne"},
      "companyId": "abc123",
      "locationRef": 123
    }
  }
}

locations

Response

Returns [Location!]!

Arguments
Name Description
distinct_on - [Location_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [Location_order_by!] Sort the returned array by one or more fields of it's elements.
where - Location_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Locations(
  $distinct_on: [Location_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Location_order_by!],
  $where: Location_bool_exp
) {
  locations(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    company {
      ...CompanyTPFragment
    }
    companyId
    locationRef
  }
}
Variables
{
  "distinct_on": ["companyId"],
  "limit": 987,
  "offset": 987,
  "order_by": [Location_order_by],
  "where": Location_bool_exp
}
Response
{
  "data": {
    "locations": [
      {
        "company": {"name": "Cyberdyne"},
        "companyId": "xyz789",
        "locationRef": 987
      }
    ]
  }
}

machines

Response

Returns [MachineTP!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [MachineTP_order_by!] Sort the returned array by one or more fields of it's elements.
where - MachineTP_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Machines(
  $limit: Int,
  $offset: Int,
  $order_by: [MachineTP_order_by!],
  $where: MachineTP_bool_exp
) {
  machines(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activitySets {
      ...ActivitySetFragment
    }
    annotations {
      ...AnnotationTPFragment
    }
    company {
      ...CompanyTPFragment
    }
    companyId
    currentAlarms {
      ...CurrentAlarmRTFragment
    }
    currentStates {
      ...CurrentStateRTFragment
    }
    decommissionedAt
    erpResources {
      ...erpResourcesFragment
    }
    latestPositions {
      ...LatestPositionRTFragment
    }
    latestQuantities {
      ...LatestQuantityRTFragment
    }
    machineId
    machineRef
    make
    metrics {
      ...MetricTPFragment
    }
    model
    name
    operatorRuns {
      ...OperatorRunTPFragment
    }
    partCountCorrections {
      ...PartCountCorrectionFragment
    }
    partCountMetricKey
    rejects {
      ...RejectFragment
    }
  }
}
Variables
{
  "limit": 123,
  "offset": 987,
  "order_by": [MachineTP_order_by],
  "where": MachineTP_bool_exp
}
Response
{
  "data": {
    "machines": [
      {
        "activitySets": [ActivitySet],
        "annotations": [AnnotationTP],
        "company": {
          "companyId": "01c08a38-f33d-4348-9918-e6957cab5c27",
          "name": "Cyberdyne"
        },
        "companyId": "abc123",
        "currentAlarms": [CurrentAlarmRT],
        "currentStates": [CurrentStateRT],
        "decommissionedAt": "2022-05-07T01:08:03.420Z",
        "erpResources": [erpResources],
        "latestPositions": [LatestPositionRT],
        "latestQuantities": [LatestQuantityRT],
        "machineId": "abc123",
        "machineRef": 987,
        "make": "Citizen",
        "metrics": [MetricTP],
        "model": "K16E",
        "name": "Citizen B12",
        "operatorRuns": [OperatorRunTP],
        "partCountCorrections": [PartCountCorrection],
        "partCountMetricKey": "abc123",
        "rejects": [Reject]
      }
    ]
  }
}

metric

Response

Returns a MetricTP

Arguments
Name Description
machineRef - Int! A unique, numeric identifier for the machine.
metricKey - String! Each metric is globally identified by the combination of machineRef and metricKey.

Example

Query
query Metric(
  $machineRef: Int!,
  $metricKey: String!
) {
  metric(
    machineRef: $machineRef,
    metricKey: $metricKey
  ) {
    machineRef
    metricKey
    subtype
    type
  }
}
Variables
{"machineRef": 987, "metricKey": "xyz789"}
Response
{
  "data": {
    "metric": {
      "machineRef": 987,
      "metricKey": "abc123",
      "subtype": "abc123",
      "type": "xyz789"
    }
  }
}

metrics

Response

Returns [MetricTP!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [MetricTP_order_by!] Sort the returned array by one or more fields of it's elements.
where - MetricTP_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Metrics(
  $limit: Int,
  $offset: Int,
  $order_by: [MetricTP_order_by!],
  $where: MetricTP_bool_exp
) {
  metrics(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    machineRef
    metricKey
    subtype
    type
  }
}
Variables
{
  "limit": 987,
  "offset": 987,
  "order_by": [MetricTP_order_by],
  "where": MetricTP_bool_exp
}
Response
{
  "data": {
    "metrics": [
      {
        "machineRef": 123,
        "metricKey": "abc123",
        "subtype": "abc123",
        "type": "xyz789"
      }
    ]
  }
}

operations

Response

Returns [Operation!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [Operation_order_by!] Sort the returned array by one or more fields of it's elements.
where - Operation_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Operations(
  $limit: Int,
  $offset: Int,
  $order_by: [Operation_order_by!],
  $where: Operation_bool_exp
) {
  operations(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activitySets {
      ...ActivitySetFragment
    }
    company {
      ...CompanyTPFragment
    }
    description
    name
    operationId
    partNumber
    sequenceNumber
  }
}
Variables
{
  "limit": 123,
  "offset": 987,
  "order_by": [Operation_order_by],
  "where": Operation_bool_exp
}
Response
{
  "data": {
    "operations": [
      {
        "activitySets": [ActivitySet],
        "company": {"name": "Cyberdyne"},
        "description": "xyz789",
        "name": "xyz789",
        "operationId": "xyz789",
        "partNumber": "abc123",
        "sequenceNumber": "abc123"
      }
    ]
  }
}

operatorRuns

Response

Returns [OperatorRunTP!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [OperatorRunTP_order_by!] Sort the returned array by one or more fields of it's elements.
where - OperatorRunTP_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query OperatorRuns(
  $limit: Int,
  $offset: Int,
  $order_by: [OperatorRunTP_order_by!],
  $where: OperatorRunTP_bool_exp
) {
  operatorRuns(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    endAt
    machine {
      ...MachineTPFragment
    }
    operator {
      ...OperatorTPFragment
    }
    operatorRunRef
    startAt
  }
}
Variables
{
  "limit": 123,
  "offset": 987,
  "order_by": [OperatorRunTP_order_by],
  "where": OperatorRunTP_bool_exp
}
Response
{
  "data": {
    "operatorRuns": [
      {
        "endAt": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "operator": OperatorTP,
        "operatorRunRef": 987,
        "startAt": "2022-05-07T01:08:03.420Z"
      }
    ]
  }
}

operators

Description

Returns a collection of Operators

Response

Returns [OperatorTP!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [OperatorTP_order_by!] Sort the returned array by one or more fields of it's elements.
where - OperatorTP_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Operators(
  $limit: Int,
  $offset: Int,
  $order_by: [OperatorTP_order_by!],
  $where: OperatorTP_bool_exp
) {
  operators(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    company {
      ...CompanyTPFragment
    }
    isArchived
    name
    operatorRef
    operatorRuns {
      ...OperatorRunTPFragment
    }
  }
}
Variables
{
  "limit": 123,
  "offset": 987,
  "order_by": [OperatorTP_order_by],
  "where": OperatorTP_bool_exp
}
Response
{
  "data": {
    "operators": [
      {
        "company": {"name": "Cyberdyne"},
        "isArchived": true,
        "name": "abc123",
        "operatorRef": 987,
        "operatorRuns": [OperatorRunTP]
      }
    ]
  }
}

partCountCorrections

Response

Returns [PartCountCorrection!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [PartCountCorrection_order_by!] Sort the returned array by one or more fields of it's elements.
where - PartCountCorrection_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query PartCountCorrections(
  $limit: Int,
  $offset: Int,
  $order_by: [PartCountCorrection_order_by!],
  $where: PartCountCorrection_bool_exp
) {
  partCountCorrections(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    effectiveAt
    machine {
      ...MachineTPFragment
    }
    value
  }
}
Variables
{
  "limit": 123,
  "offset": 123,
  "order_by": [PartCountCorrection_order_by],
  "where": PartCountCorrection_bool_exp
}
Response
{
  "data": {
    "partCountCorrections": [
      {
        "effectiveAt": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "value": 987
      }
    ]
  }
}

partCounts

Response

Returns [PartCountRT!]!

Arguments
Name Description
args - partCounts_args! A set of arguments passed to the function.
distinct_on - [PartCountRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [PartCountRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - PartCountRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query PartCounts(
  $args: partCounts_args!,
  $distinct_on: [PartCountRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [PartCountRT_order_by!],
  $where: PartCountRT_bool_exp
) {
  partCounts(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    eventTime
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    sequence
    value
  }
}
Variables
{
  "args": partCounts_args,
  "distinct_on": ["eventTime"],
  "limit": 987,
  "offset": 987,
  "order_by": [PartCountRT_order_by],
  "where": PartCountRT_bool_exp
}
Response
{
  "data": {
    "partCounts": [
      {
        "eventTime": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "abc123",
        "sequence": 123,
        "value": 123
      }
    ]
  }
}

positions

Response

Returns [PositionRT!]!

Arguments
Name Description
args - positions_args! A set of arguments passed to the function.
distinct_on - [PositionRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [PositionRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - PositionRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Positions(
  $args: positions_args!,
  $distinct_on: [PositionRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [PositionRT_order_by!],
  $where: PositionRT_bool_exp
) {
  positions(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    eventTime
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    x
    y
    z
  }
}
Variables
{
  "args": positions_args,
  "distinct_on": ["eventTime"],
  "limit": 987,
  "offset": 987,
  "order_by": [PositionRT_order_by],
  "where": PositionRT_bool_exp
}
Response
{
  "data": {
    "positions": [
      {
        "eventTime": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "xyz789",
        "x": 43.12,
        "y": 43.12,
        "z": 43.12
      }
    ]
  }
}

quantities

Response

Returns [QuantityRT!]!

Arguments
Name Description
args - quantities_args! A set of arguments passed to the function.
distinct_on - [QuantityRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [QuantityRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - QuantityRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Quantities(
  $args: quantities_args!,
  $distinct_on: [QuantityRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [QuantityRT_order_by!],
  $where: QuantityRT_bool_exp
) {
  quantities(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    eventTime
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    sequence
    value
  }
}
Variables
{
  "args": quantities_args,
  "distinct_on": ["eventTime"],
  "limit": 123,
  "offset": 987,
  "order_by": [QuantityRT_order_by],
  "where": QuantityRT_bool_exp
}
Response
{
  "data": {
    "quantities": [
      {
        "eventTime": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 987,
        "metricKey": "abc123",
        "sequence": 987,
        "value": 43.12
      }
    ]
  }
}

rejectReasons

Response

Returns [RejectReason!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [RejectReason_order_by!] Sort the returned array by one or more fields of it's elements.
where - RejectReason_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query RejectReasons(
  $limit: Int,
  $offset: Int,
  $order_by: [RejectReason_order_by!],
  $where: RejectReason_bool_exp
) {
  rejectReasons(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    color
    company {
      ...CompanyTPFragment
    }
    erpReason {
      ...erpReasonFragment
    }
    isArchived
    name
    rejectReasonRef
    rejects {
      ...RejectFragment
    }
  }
}
Variables
{
  "limit": 123,
  "offset": 123,
  "order_by": [RejectReason_order_by],
  "where": RejectReason_bool_exp
}
Response
{
  "data": {
    "rejectReasons": [
      {
        "color": "xyz789",
        "company": {"name": "Cyberdyne"},
        "erpReason": erpReason,
        "isArchived": true,
        "name": "xyz789",
        "rejectReasonRef": 987,
        "rejects": [Reject]
      }
    ]
  }
}

rejects

Response

Returns [Reject!]!

Arguments
Name Description
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [Reject_order_by!] Sort the returned array by one or more fields of it's elements.
where - Reject_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query Rejects(
  $limit: Int,
  $offset: Int,
  $order_by: [Reject_order_by!],
  $where: Reject_bool_exp
) {
  rejects(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    machine {
      ...MachineTPFragment
    }
    rejectId
    rejectReason {
      ...RejectReasonFragment
    }
    rejectType
    rejectedAt
    value
  }
}
Variables
{
  "limit": 123,
  "offset": 123,
  "order_by": [Reject_order_by],
  "where": Reject_bool_exp
}
Response
{
  "data": {
    "rejects": [
      {
        "machine": MachineTP,
        "rejectId": "abc123",
        "rejectReason": RejectReason,
        "rejectType": "abc123",
        "rejectedAt": "2022-05-07T01:08:03.420Z",
        "value": 987
      }
    ]
  }
}

stateIntervals

Response

Returns [StateIntervalRT!]!

Arguments
Name Description
args - stateIntervals_args! A set of arguments passed to the function.
distinct_on - [StateIntervalRT_select_column!] Return a distinct set of entities, defined by the given fields.
limit - Int Limits the number of objects returned.
offset - Int Start a the specified, zero-based array index. This is only useful in combination with order_by.
order_by - [StateIntervalRT_order_by!] Sort the returned array by one or more fields of it's elements.
where - StateIntervalRT_bool_exp Filter the data by using a (nested) boolean expression.

Example

Query
query StateIntervals(
  $args: stateIntervals_args!,
  $distinct_on: [StateIntervalRT_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [StateIntervalRT_order_by!],
  $where: StateIntervalRT_bool_exp
) {
  stateIntervals(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    endAt
    machine {
      ...MachineTPFragment
    }
    machineRef
    metricKey
    startAt
    value
  }
}
Variables
{
  "args": stateIntervals_args,
  "distinct_on": ["endAt"],
  "limit": 987,
  "offset": 987,
  "order_by": [StateIntervalRT_order_by],
  "where": StateIntervalRT_bool_exp
}
Response
{
  "data": {
    "stateIntervals": [
      {
        "endAt": "2022-05-07T01:08:03.420Z",
        "machine": MachineTP,
        "machineRef": 123,
        "metricKey": "abc123",
        "startAt": "2022-05-07T01:08:03.420Z",
        "value": "xyz789"
      }
    ]
  }
}

Types

Activity

Description

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.

Fields
Field Name Description
activityRef - bigint A unique, numeric identifier for the activity.
activitySet - ActivitySet
activityType - ActivityType
endAt - timestamptz The end of an interval. Intervals are right-exclusive.
startAt - timestamptz The start of an interval.
Example
{
  "activityRef": 982312,
  "activitySet": ActivitySet,
  "activityType": ActivityType,
  "endAt": "2022-05-07T01:08:03.420Z",
  "startAt": "2022-05-07T01:08:03.420Z"
}

ActivitySet

Description

Each Activity is a distinct span of time, but they can be rolled up into a complete effort using Activity Sets. Activity Sets allow for work to be paused and resumed on a piece of equipment, or a transition from setup to production, while maintaining each Activity as step toward a greater goal. An Activity Set is the data model backing a Production Run.

Fields
Field Name Description
activePartTimeMs - Int
activeTimeMs - Int
activities - [Activity!]!
Arguments
distinct_on - [Activity_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [Activity_order_by!]

Sort the returned array by one or more fields of it's elements.

where - Activity_bool_exp

Filter the data by using a (nested) boolean expression.

activitySetRef - bigint! A unique, numeric identifier for the activitySet.
actualParts - Float
closedAt - timestamp
cycleTimeMs - Int
expectedSetupTimeMs - Int
expectedUnitDurationMs - Int
machine - MachineTP The machine the event originates from.
operation - Operation
optimalPartTimeMs - Int
partCountMultiplier - Float
partTimeMs - Int
sampleCycleCount - Int!
samplePartCount - Int!
touchPartTimeMs - Int
touchTimeMs - Int
workOrderId - String An identifier for the work order. The identifier is usually generated in a third party system (ERP).
workOrderOperation - erpWorkOrderOperations Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.
Example
{
  "activePartTimeMs": 987,
  "activeTimeMs": 123,
  "activities": [Activity],
  "activitySetRef": 982312,
  "actualParts": 123.45,
  "closedAt": "2022-05-07T01:08:03.420Z",
  "cycleTimeMs": 123,
  "expectedSetupTimeMs": 987,
  "expectedUnitDurationMs": 123,
  "machine": MachineTP,
  "operation": Operation,
  "optimalPartTimeMs": 987,
  "partCountMultiplier": 987.65,
  "partTimeMs": 987,
  "sampleCycleCount": 123,
  "samplePartCount": 987,
  "touchPartTimeMs": 987,
  "touchTimeMs": 123,
  "workOrderId": "abc123",
  "workOrderOperation": erpWorkOrderOperations
}

ActivitySet_bool_exp

Description

Boolean expressions to filter ActivitySet. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [ActivitySet_bool_exp!] Combines the given expressions using a logical AND
_not - ActivitySet_bool_exp Negates the result of the given expression.
_or - [ActivitySet_bool_exp!] Combines the given expressions using a logical OR.
activePartTimeMs - Int_comparison_exp
activeTimeMs - Int_comparison_exp
activities - Activity_bool_exp
activitySetRef - bigint_comparison_exp A unique, numeric identifier for the activitySet.
actualParts - Float_comparison_exp
closedAt - timestamp_comparison_exp
cycleTimeMs - Int_comparison_exp
expectedSetupTimeMs - Int_comparison_exp
expectedUnitDurationMs - Int_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
operation - Operation_bool_exp
optimalPartTimeMs - Int_comparison_exp
partCountMultiplier - Float_comparison_exp
partTimeMs - Int_comparison_exp
sampleCycleCount - Int_comparison_exp
samplePartCount - Int_comparison_exp
touchPartTimeMs - Int_comparison_exp
touchTimeMs - Int_comparison_exp
workOrderId - String_comparison_exp A globally unique identifier (UUID) for the workOrder.
Example
{
  "_and": [ActivitySet_bool_exp],
  "_not": ActivitySet_bool_exp,
  "_or": [ActivitySet_bool_exp],
  "activePartTimeMs": Int_comparison_exp,
  "activeTimeMs": Int_comparison_exp,
  "activities": Activity_bool_exp,
  "activitySetRef": bigint_comparison_exp,
  "actualParts": Float_comparison_exp,
  "closedAt": timestamp_comparison_exp,
  "cycleTimeMs": Int_comparison_exp,
  "expectedSetupTimeMs": Int_comparison_exp,
  "expectedUnitDurationMs": Int_comparison_exp,
  "machine": MachineTP_bool_exp,
  "operation": Operation_bool_exp,
  "optimalPartTimeMs": Int_comparison_exp,
  "partCountMultiplier": Float_comparison_exp,
  "partTimeMs": Int_comparison_exp,
  "sampleCycleCount": Int_comparison_exp,
  "samplePartCount": Int_comparison_exp,
  "touchPartTimeMs": Int_comparison_exp,
  "touchTimeMs": Int_comparison_exp,
  "workOrderId": String_comparison_exp
}

ActivitySet_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
activePartTimeMs - order_by
activeTimeMs - order_by
activitySetRef - order_by A unique, numeric identifier for the activitySet.
actualParts - order_by
closedAt - order_by
cycleTimeMs - order_by
expectedSetupTimeMs - order_by
expectedUnitDurationMs - order_by
machine - MachineTP_order_by The machine the event originates from.
operation - Operation_order_by
optimalPartTimeMs - order_by
partCountMultiplier - order_by
partTimeMs - order_by
sampleCycleCount - order_by
samplePartCount - order_by
touchPartTimeMs - order_by
touchTimeMs - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
Example
{
  "activePartTimeMs": "asc",
  "activeTimeMs": "asc",
  "activitySetRef": "asc",
  "actualParts": "asc",
  "closedAt": "asc",
  "cycleTimeMs": "asc",
  "expectedSetupTimeMs": "asc",
  "expectedUnitDurationMs": "asc",
  "machine": MachineTP_order_by,
  "operation": Operation_order_by,
  "optimalPartTimeMs": "asc",
  "partCountMultiplier": "asc",
  "partTimeMs": "asc",
  "sampleCycleCount": "asc",
  "samplePartCount": "asc",
  "touchPartTimeMs": "asc",
  "touchTimeMs": "asc",
  "workOrderId": "asc"
}

ActivitySet_select_column

Values
Enum Value Description

activePartTimeMs

activeTimeMs

activitySetRef

A unique, numeric identifier for the activitySet.

actualParts

closedAt

cycleTimeMs

expectedSetupTimeMs

expectedUnitDurationMs

optimalPartTimeMs

partCountMultiplier

partTimeMs

sampleCycleCount

samplePartCount

touchPartTimeMs

touchTimeMs

workOrderId

A globally unique identifier (UUID) for the workOrder.
Example
"activePartTimeMs"

ActivityType

Description

Throughout the lifespan of an Activity Set, multiple types of Activities can be performed. Activity Types are broken down into distinct modes that are uniquely supported by MachineMetrics and result in differing behavior within the user experience. The two modes that are supported by MachineMetrics at launch are Setup and Production. Activity Types allow for these modes to be broken down into differently labeled types. For example, the setup mode can be broken down into customer definable stages like Teardown, Tooling, and First Piece Inspection. Combined with Workflows, Activities can be used to notify key stakeholders in a process to take action when certain activities are started or work is projected to fail in achieving a goal.

Fields
Field Name Description
activityMode - String!
activityTypeRef - bigint! A unique, numeric identifier for the activityType.
company - CompanyTP
name - String! A descriptive, human-readable name
Example
{
  "activityMode": "production",
  "activityTypeRef": 982312,
  "company": {"name": "Cyberdyne"},
  "name": "abc123"
}

ActivityType_bool_exp

Description

Boolean expressions to filter ActivityType. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [ActivityType_bool_exp!] Combines the given expressions using a logical AND
_not - ActivityType_bool_exp Negates the result of the given expression.
_or - [ActivityType_bool_exp!] Combines the given expressions using a logical OR.
activityMode - String_comparison_exp
activityTypeRef - bigint_comparison_exp A unique, numeric identifier for the activityType.
company - CompanyTP_bool_exp
name - String_comparison_exp A descriptive, human-readable name
Example
{
  "_and": [ActivityType_bool_exp],
  "_not": ActivityType_bool_exp,
  "_or": [ActivityType_bool_exp],
  "activityMode": String_comparison_exp,
  "activityTypeRef": bigint_comparison_exp,
  "company": CompanyTP_bool_exp,
  "name": String_comparison_exp
}

ActivityType_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
activityMode - order_by
activityTypeRef - order_by A unique, numeric identifier for the activityType.
company - CompanyTP_order_by
name - order_by A descriptive, human-readable name
Example
{
  "activityMode": "asc",
  "activityTypeRef": "asc",
  "company": CompanyTP_order_by,
  "name": "asc"
}

ActivityType_select_column

Values
Enum Value Description

activityMode

activityTypeRef

A unique, numeric identifier for the activityType.

name

A descriptive, human-readable name
Example
"activityMode"

Activity_bool_exp

Description

Boolean expressions to filter Activity. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [Activity_bool_exp!] Combines the given expressions using a logical AND
_not - Activity_bool_exp Negates the result of the given expression.
_or - [Activity_bool_exp!] Combines the given expressions using a logical OR.
activityRef - bigint_comparison_exp A unique, numeric identifier for the activity.
activitySet - ActivitySet_bool_exp
activityType - ActivityType_bool_exp
endAt - timestamptz_comparison_exp The end of an interval. Intervals are right-exclusive.
startAt - timestamptz_comparison_exp The start of an interval.
Example
{
  "_and": [Activity_bool_exp],
  "_not": Activity_bool_exp,
  "_or": [Activity_bool_exp],
  "activityRef": bigint_comparison_exp,
  "activitySet": ActivitySet_bool_exp,
  "activityType": ActivityType_bool_exp,
  "endAt": timestamptz_comparison_exp,
  "startAt": timestamptz_comparison_exp
}

Activity_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
activityRef - order_by A unique, numeric identifier for the activity.
activitySet - ActivitySet_order_by
activityType - ActivityType_order_by
endAt - order_by The end of an interval. Intervals are right-exclusive.
startAt - order_by The start of an interval.
Example
{
  "activityRef": "asc",
  "activitySet": ActivitySet_order_by,
  "activityType": ActivityType_order_by,
  "endAt": "asc",
  "startAt": "asc"
}

Activity_select_column

Values
Enum Value Description

activityRef

A unique, numeric identifier for the activity.

endAt

The end of an interval. Intervals are right-exclusive.

startAt

The start of an interval.
Example
"activityRef"

AggregatedAlarmsRT

Fields
Field Name Description
bucketEndAt - timestamptz
bucketStartAt - timestamptz
description - String
durationMs - numeric
label - String
machineRef - Int A unique, numeric identifier for the machine.
maxEndAt - timestamptz
minStartAt - timestamptz
nativeCode - String
recordCount - Int
status - String
Example
{
  "bucketEndAt": "2022-05-07T01:08:03.420Z",
  "bucketStartAt": "2022-05-07T01:08:03.420Z",
  "description": "abc123",
  "durationMs": numeric,
  "label": "abc123",
  "machineRef": 123,
  "maxEndAt": "2022-05-07T01:08:03.420Z",
  "minStartAt": "2022-05-07T01:08:03.420Z",
  "nativeCode": "abc123",
  "recordCount": 123,
  "status": "abc123"
}

AggregatedAlarmsRT_bool_exp

Description

Boolean expressions to filter AggregatedAlarmsRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [AggregatedAlarmsRT_bool_exp!] Combines the given expressions using a logical AND
_not - AggregatedAlarmsRT_bool_exp Negates the result of the given expression.
_or - [AggregatedAlarmsRT_bool_exp!] Combines the given expressions using a logical OR.
bucketEndAt - timestamptz_comparison_exp
bucketStartAt - timestamptz_comparison_exp
description - String_comparison_exp
durationMs - numeric_comparison_exp
label - String_comparison_exp
machine - business_machine_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
maxEndAt - timestamptz_comparison_exp
minStartAt - timestamptz_comparison_exp
nativeCode - String_comparison_exp
recordCount - Int_comparison_exp
status - String_comparison_exp
Example
{
  "_and": [AggregatedAlarmsRT_bool_exp],
  "_not": AggregatedAlarmsRT_bool_exp,
  "_or": [AggregatedAlarmsRT_bool_exp],
  "bucketEndAt": timestamptz_comparison_exp,
  "bucketStartAt": timestamptz_comparison_exp,
  "description": String_comparison_exp,
  "durationMs": numeric_comparison_exp,
  "label": String_comparison_exp,
  "machine": business_machine_bool_exp,
  "machineRef": Int_comparison_exp,
  "maxEndAt": timestamptz_comparison_exp,
  "minStartAt": timestamptz_comparison_exp,
  "nativeCode": String_comparison_exp,
  "recordCount": Int_comparison_exp,
  "status": String_comparison_exp
}

AggregatedAlarmsRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
bucketEndAt - order_by
bucketStartAt - order_by
description - order_by
durationMs - order_by
label - order_by
machine - business_machine_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
maxEndAt - order_by
minStartAt - order_by
nativeCode - order_by
recordCount - order_by
status - order_by
Example
{
  "bucketEndAt": "asc",
  "bucketStartAt": "asc",
  "description": "asc",
  "durationMs": "asc",
  "label": "asc",
  "machine": business_machine_order_by,
  "machineRef": "asc",
  "maxEndAt": "asc",
  "minStartAt": "asc",
  "nativeCode": "asc",
  "recordCount": "asc",
  "status": "asc"
}

AggregatedAlarmsRT_select_column

Values
Enum Value Description

bucketEndAt

bucketStartAt

description

durationMs

label

machineRef

A unique, numeric identifier for the machine.

maxEndAt

minStartAt

nativeCode

recordCount

status

Example
"bucketEndAt"

AggregatedPartCountRT

Fields
Field Name Description
avgValue - float8!
bucketEndAt - timestamptz!
bucketStartAt - timestamptz!
bucketWidth - interval!
eventCount - Int!
firstBucketEventTime - timestamptz!
firstValue - Int
lastBucketEventTime - timestamptz!
lastValue - Int
machine - MachineTP The machine the event originates from.
machineRef - Int! A unique, numeric identifier for the machine.
maxValue - Int
metricKey - String! Each metric is globally identified by the combination of machineRef and metricKey.
minValue - Int
sumOfValues - Int!
Example
{
  "avgValue": 43.12,
  "bucketEndAt": "2022-05-07T01:08:03.420Z",
  "bucketStartAt": "2022-05-07T01:08:03.420Z",
  "bucketWidth": "1h",
  "eventCount": 123,
  "firstBucketEventTime": "2022-05-07T01:08:03.420Z",
  "firstValue": 123,
  "lastBucketEventTime": "2022-05-07T01:08:03.420Z",
  "lastValue": 987,
  "machine": MachineTP,
  "machineRef": 123,
  "maxValue": 987,
  "metricKey": "xyz789",
  "minValue": 123,
  "sumOfValues": 123
}

AggregatedPartCountRT_bool_exp

Description

Boolean expressions to filter AggregatedPartCountRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [AggregatedPartCountRT_bool_exp!] Combines the given expressions using a logical AND
_not - AggregatedPartCountRT_bool_exp Negates the result of the given expression.
_or - [AggregatedPartCountRT_bool_exp!] Combines the given expressions using a logical OR.
avgValue - float8_comparison_exp
bucketEndAt - timestamptz_comparison_exp
bucketStartAt - timestamptz_comparison_exp
bucketWidth - interval_comparison_exp
eventCount - Int_comparison_exp
firstBucketEventTime - timestamptz_comparison_exp
firstValue - Int_comparison_exp
lastBucketEventTime - timestamptz_comparison_exp
lastValue - Int_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
maxValue - Int_comparison_exp
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
minValue - Int_comparison_exp
sumOfValues - Int_comparison_exp
Example
{
  "_and": [AggregatedPartCountRT_bool_exp],
  "_not": AggregatedPartCountRT_bool_exp,
  "_or": [AggregatedPartCountRT_bool_exp],
  "avgValue": float8_comparison_exp,
  "bucketEndAt": timestamptz_comparison_exp,
  "bucketStartAt": timestamptz_comparison_exp,
  "bucketWidth": interval_comparison_exp,
  "eventCount": Int_comparison_exp,
  "firstBucketEventTime": timestamptz_comparison_exp,
  "firstValue": Int_comparison_exp,
  "lastBucketEventTime": timestamptz_comparison_exp,
  "lastValue": Int_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "maxValue": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "minValue": Int_comparison_exp,
  "sumOfValues": Int_comparison_exp
}

AggregatedPartCountRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
avgValue - order_by
bucketEndAt - order_by
bucketStartAt - order_by
bucketWidth - order_by
eventCount - order_by
firstBucketEventTime - order_by
firstValue - order_by
lastBucketEventTime - order_by
lastValue - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
maxValue - order_by
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
minValue - order_by
sumOfValues - order_by
Example
{
  "avgValue": "asc",
  "bucketEndAt": "asc",
  "bucketStartAt": "asc",
  "bucketWidth": "asc",
  "eventCount": "asc",
  "firstBucketEventTime": "asc",
  "firstValue": "asc",
  "lastBucketEventTime": "asc",
  "lastValue": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "maxValue": "asc",
  "metricKey": "asc",
  "minValue": "asc",
  "sumOfValues": "asc"
}

AggregatedPartCountRT_select_column

Values
Enum Value Description

avgValue

bucketEndAt

bucketStartAt

bucketWidth

eventCount

firstBucketEventTime

firstValue

lastBucketEventTime

lastValue

machineRef

A unique, numeric identifier for the machine.

maxValue

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

minValue

sumOfValues

Example
"avgValue"

AggregatedQuantityRT

Fields
Field Name Description
avgValue - float8!
bucketEndAt - timestamptz!
bucketStartAt - timestamptz!
bucketWidth - interval!
eventCount - Int!
firstBucketEventTime - timestamptz!
firstValue - float8
lastBucketEventTime - timestamptz!
lastValue - float8
machine - MachineTP The machine the event originates from.
machineRef - Int! A unique, numeric identifier for the machine.
maxValue - float8
metricKey - String! Each metric is globally identified by the combination of machineRef and metricKey.
minValue - float8
sumOfValues - float8!
Example
{
  "avgValue": 43.12,
  "bucketEndAt": "2022-05-07T01:08:03.420Z",
  "bucketStartAt": "2022-05-07T01:08:03.420Z",
  "bucketWidth": "1h",
  "eventCount": 123,
  "firstBucketEventTime": "2022-05-07T01:08:03.420Z",
  "firstValue": 43.12,
  "lastBucketEventTime": "2022-05-07T01:08:03.420Z",
  "lastValue": 43.12,
  "machine": MachineTP,
  "machineRef": 987,
  "maxValue": 43.12,
  "metricKey": "abc123",
  "minValue": 43.12,
  "sumOfValues": 43.12
}

AggregatedQuantityRT_bool_exp

Description

Boolean expressions to filter AggregatedQuantityRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [AggregatedQuantityRT_bool_exp!] Combines the given expressions using a logical AND
_not - AggregatedQuantityRT_bool_exp Negates the result of the given expression.
_or - [AggregatedQuantityRT_bool_exp!] Combines the given expressions using a logical OR.
avgValue - float8_comparison_exp
bucketEndAt - timestamptz_comparison_exp
bucketStartAt - timestamptz_comparison_exp
bucketWidth - interval_comparison_exp
eventCount - Int_comparison_exp
firstBucketEventTime - timestamptz_comparison_exp
firstValue - float8_comparison_exp
lastBucketEventTime - timestamptz_comparison_exp
lastValue - float8_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
maxValue - float8_comparison_exp
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
minValue - float8_comparison_exp
sumOfValues - float8_comparison_exp
Example
{
  "_and": [AggregatedQuantityRT_bool_exp],
  "_not": AggregatedQuantityRT_bool_exp,
  "_or": [AggregatedQuantityRT_bool_exp],
  "avgValue": float8_comparison_exp,
  "bucketEndAt": timestamptz_comparison_exp,
  "bucketStartAt": timestamptz_comparison_exp,
  "bucketWidth": interval_comparison_exp,
  "eventCount": Int_comparison_exp,
  "firstBucketEventTime": timestamptz_comparison_exp,
  "firstValue": float8_comparison_exp,
  "lastBucketEventTime": timestamptz_comparison_exp,
  "lastValue": float8_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "maxValue": float8_comparison_exp,
  "metricKey": String_comparison_exp,
  "minValue": float8_comparison_exp,
  "sumOfValues": float8_comparison_exp
}

AggregatedQuantityRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
avgValue - order_by
bucketEndAt - order_by
bucketStartAt - order_by
bucketWidth - order_by
eventCount - order_by
firstBucketEventTime - order_by
firstValue - order_by
lastBucketEventTime - order_by
lastValue - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
maxValue - order_by
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
minValue - order_by
sumOfValues - order_by
Example
{
  "avgValue": "asc",
  "bucketEndAt": "asc",
  "bucketStartAt": "asc",
  "bucketWidth": "asc",
  "eventCount": "asc",
  "firstBucketEventTime": "asc",
  "firstValue": "asc",
  "lastBucketEventTime": "asc",
  "lastValue": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "maxValue": "asc",
  "metricKey": "asc",
  "minValue": "asc",
  "sumOfValues": "asc"
}

AlarmIntervalRT

Fields
Field Name Description
description - String A short description of the alarm.
endAt - timestamptz The end of an interval. Intervals are right-exclusive.
label - String The label of the alarm (one of: NORMAL, WARNING, FAULT, UNAVAILABLE)
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - String The native code further specifies the alarm. The combination of machineRef, metricKey, and nativeCode uniquely identifies the alarm.
sequence - Int An integer value that determines the order of events with the same eventTime and metric.
startAt - timestamptz The start of an interval.
Example
{
  "description": "abc123",
  "endAt": "2022-05-07T01:08:03.420Z",
  "label": "abc123",
  "machine": MachineTP,
  "machineRef": 123,
  "metricKey": "xyz789",
  "nativeCode": "abc123",
  "sequence": 123,
  "startAt": "2022-05-07T01:08:03.420Z"
}

AlarmIntervalRT_bool_exp

Description

Boolean expressions to filter AlarmIntervalRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [AlarmIntervalRT_bool_exp!] Combines the given expressions using a logical AND
_not - AlarmIntervalRT_bool_exp Negates the result of the given expression.
_or - [AlarmIntervalRT_bool_exp!] Combines the given expressions using a logical OR.
description - String_comparison_exp A short description of the alarm.
endAt - timestamptz_comparison_exp The end of an interval. Intervals are right-exclusive.
label - String_comparison_exp The label of the alarm (one of: NORMAL, WARNING, FAULT, UNAVAILABLE)
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - String_comparison_exp The native code further specifies the alarm. The combination of machineRef, metricKey, and nativeCode uniquely identifies the alarm.
sequence - Int_comparison_exp An integer value that determines the order of events with the same eventTime and metric.
startAt - timestamptz_comparison_exp The start of an interval.
Example
{
  "_and": [AlarmIntervalRT_bool_exp],
  "_not": AlarmIntervalRT_bool_exp,
  "_or": [AlarmIntervalRT_bool_exp],
  "description": String_comparison_exp,
  "endAt": timestamptz_comparison_exp,
  "label": String_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "nativeCode": String_comparison_exp,
  "sequence": Int_comparison_exp,
  "startAt": timestamptz_comparison_exp
}

AlarmIntervalRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
description - order_by A short description of the alarm.
endAt - order_by The end of an interval. Intervals are right-exclusive.
label - order_by The label of the alarm (one of: NORMAL, WARNING, FAULT, UNAVAILABLE)
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - order_by The native code further specifies the alarm. The combination of machineRef, metricKey, and nativeCode uniquely identifies the alarm.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
startAt - order_by The start of an interval.
Example
{
  "description": "asc",
  "endAt": "asc",
  "label": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "nativeCode": "asc",
  "sequence": "asc",
  "startAt": "asc"
}

AlarmIntervalRT_select_column

Values
Enum Value Description

description

A short description of the alarm.

endAt

The end of an interval. Intervals are right-exclusive.

label

The label of the alarm (one of: NORMAL, WARNING, FAULT, UNAVAILABLE)

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

nativeCode

The native code further specifies the alarm. The combination of machineRef, metricKey, and nativeCode uniquely identifies the alarm.

sequence

An integer value that determines the order of events with the same eventTime and metric.

startAt

The start of an interval.
Example
"description"

AnnotationTP

Description

Operators, automated processes, and other members of the organization may use the MachineMetrics Operator Dashboard or Timeline in product to identify periods of downtime, label it, and provide additional context through comments. A Annotation is the data model backing a Categorized Downtime.

Fields
Field Name Description
annotationRef - Int A unique, numeric identifier for the annotation.
annotationType - AnnotationTypeTP
companyId - String A globally unique identifier (UUID) for the company.
description - String
endAt - timestamptz The end of an interval. Intervals are right-exclusive.
isPlanned - Boolean
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
startAt - timestamptz The start of an interval.
Example
{
  "annotationRef": 987,
  "annotationType": AnnotationTypeTP,
  "companyId": "xyz789",
  "description": "abc123",
  "endAt": "2022-05-07T01:08:03.420Z",
  "isPlanned": true,
  "machine": MachineTP,
  "machineRef": 987,
  "startAt": "2022-05-07T01:08:03.420Z"
}

AnnotationTP_aggregate_order_by

Description

Sort the returned array by one or more fields of it's elements.

Example
{
  "avg": AnnotationTP_avg_order_by,
  "count": "asc",
  "max": AnnotationTP_max_order_by,
  "min": AnnotationTP_min_order_by,
  "stddev": AnnotationTP_stddev_order_by,
  "stddev_pop": AnnotationTP_stddev_pop_order_by,
  "stddev_samp": AnnotationTP_stddev_samp_order_by,
  "sum": AnnotationTP_sum_order_by,
  "var_pop": AnnotationTP_var_pop_order_by,
  "var_samp": AnnotationTP_var_samp_order_by,
  "variance": AnnotationTP_variance_order_by
}

AnnotationTP_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTP_bool_exp

Description

Boolean expressions to filter AnnotationTP. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [AnnotationTP_bool_exp!] Combines the given expressions using a logical AND
_not - AnnotationTP_bool_exp Negates the result of the given expression.
_or - [AnnotationTP_bool_exp!] Combines the given expressions using a logical OR.
annotationRef - Int_comparison_exp A unique, numeric identifier for the annotation.
annotationType - AnnotationTypeTP_bool_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
description - String_comparison_exp
endAt - timestamptz_comparison_exp The end of an interval. Intervals are right-exclusive.
isPlanned - Boolean_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
startAt - timestamptz_comparison_exp The start of an interval.
Example
{
  "_and": [AnnotationTP_bool_exp],
  "_not": AnnotationTP_bool_exp,
  "_or": [AnnotationTP_bool_exp],
  "annotationRef": Int_comparison_exp,
  "annotationType": AnnotationTypeTP_bool_exp,
  "companyId": String_comparison_exp,
  "description": String_comparison_exp,
  "endAt": timestamptz_comparison_exp,
  "isPlanned": Boolean_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "startAt": timestamptz_comparison_exp
}

AnnotationTP_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
companyId - order_by A globally unique identifier (UUID) for the company.
description - order_by
endAt - order_by The end of an interval. Intervals are right-exclusive.
machineRef - order_by A unique, numeric identifier for the machine.
startAt - order_by The start of an interval.
Example
{
  "annotationRef": "asc",
  "companyId": "asc",
  "description": "asc",
  "endAt": "asc",
  "machineRef": "asc",
  "startAt": "asc"
}

AnnotationTP_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
companyId - order_by A globally unique identifier (UUID) for the company.
description - order_by
endAt - order_by The end of an interval. Intervals are right-exclusive.
machineRef - order_by A unique, numeric identifier for the machine.
startAt - order_by The start of an interval.
Example
{
  "annotationRef": "asc",
  "companyId": "asc",
  "description": "asc",
  "endAt": "asc",
  "machineRef": "asc",
  "startAt": "asc"
}

AnnotationTP_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
annotationType - AnnotationTypeTP_order_by
companyId - order_by A globally unique identifier (UUID) for the company.
description - order_by
endAt - order_by The end of an interval. Intervals are right-exclusive.
isPlanned - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
startAt - order_by The start of an interval.
Example
{
  "annotationRef": "asc",
  "annotationType": AnnotationTypeTP_order_by,
  "companyId": "asc",
  "description": "asc",
  "endAt": "asc",
  "isPlanned": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "startAt": "asc"
}

AnnotationTP_select_column

Values
Enum Value Description

annotationRef

A unique, numeric identifier for the annotation.

companyId

A globally unique identifier (UUID) for the company.

description

endAt

The end of an interval. Intervals are right-exclusive.

isPlanned

machineRef

A unique, numeric identifier for the machine.

startAt

The start of an interval.
Example
"annotationRef"

AnnotationTP_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTP_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTP_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTP_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTP_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTP_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTP_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationRef - order_by A unique, numeric identifier for the annotation.
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"annotationRef": "asc", "machineRef": "asc"}

AnnotationTypeTP

Fields
Field Name Description
annotationTypeRef - Int A unique, numeric identifier for the annotationType.
annotations - [AnnotationTP!]!
Arguments
distinct_on - [AnnotationTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [AnnotationTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - AnnotationTP_bool_exp

Filter the data by using a (nested) boolean expression.

color - String The display color of the anntoation type.
company - CompanyTP
erpReason - erpReason
isArchived - Boolean A boolean flag indicating whether the annotation type is archived. This affects whether it is displayed in the UI.
name - String A descriptive, human-readable name
Example
{
  "annotationTypeRef": 123,
  "annotations": [AnnotationTP],
  "color": "abc123",
  "company": {"name": "Cyberdyne"},
  "erpReason": erpReason,
  "isArchived": true,
  "name": "abc123"
}

AnnotationTypeTP_aggregate_order_by

Example
{
  "avg": AnnotationTypeTP_avg_order_by,
  "count": "asc",
  "max": AnnotationTypeTP_max_order_by,
  "min": AnnotationTypeTP_min_order_by,
  "stddev": AnnotationTypeTP_stddev_order_by,
  "stddev_pop": AnnotationTypeTP_stddev_pop_order_by,
  "stddev_samp": AnnotationTypeTP_stddev_samp_order_by,
  "sum": AnnotationTypeTP_sum_order_by,
  "var_pop": AnnotationTypeTP_var_pop_order_by,
  "var_samp": AnnotationTypeTP_var_samp_order_by,
  "variance": AnnotationTypeTP_variance_order_by
}

AnnotationTypeTP_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

AnnotationTypeTP_bool_exp

Description

Boolean expressions to filter AnnotationTypeTP. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [AnnotationTypeTP_bool_exp!] Combines the given expressions using a logical AND
_not - AnnotationTypeTP_bool_exp Negates the result of the given expression.
_or - [AnnotationTypeTP_bool_exp!] Combines the given expressions using a logical OR.
annotationTypeRef - Int_comparison_exp A unique, numeric identifier for the annotationType.
annotations - AnnotationTP_bool_exp
color - String_comparison_exp The display color of the anntoation type.
company - CompanyTP_bool_exp
isArchived - Boolean_comparison_exp A boolean flag indicating whether the annotation type is archived. This affects whether it is displayed in the UI.
name - String_comparison_exp A descriptive, human-readable name
Example
{
  "_and": [AnnotationTypeTP_bool_exp],
  "_not": AnnotationTypeTP_bool_exp,
  "_or": [AnnotationTypeTP_bool_exp],
  "annotationTypeRef": Int_comparison_exp,
  "annotations": AnnotationTP_bool_exp,
  "color": String_comparison_exp,
  "company": CompanyTP_bool_exp,
  "isArchived": Boolean_comparison_exp,
  "name": String_comparison_exp
}

AnnotationTypeTP_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
color - order_by The display color of the anntoation type.
name - order_by A descriptive, human-readable name
Example
{"annotationTypeRef": "asc", "color": "asc", "name": "asc"}

AnnotationTypeTP_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
color - order_by The display color of the anntoation type.
name - order_by A descriptive, human-readable name
Example
{"annotationTypeRef": "asc", "color": "asc", "name": "asc"}

AnnotationTypeTP_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
annotations_aggregate - AnnotationTP_aggregate_order_by
color - order_by The display color of the anntoation type.
company - CompanyTP_order_by
isArchived - order_by A boolean flag indicating whether the annotation type is archived. This affects whether it is displayed in the UI.
name - order_by A descriptive, human-readable name
Example
{
  "annotationTypeRef": "asc",
  "annotations_aggregate": AnnotationTP_aggregate_order_by,
  "color": "asc",
  "company": CompanyTP_order_by,
  "isArchived": "asc",
  "name": "asc"
}

AnnotationTypeTP_select_column

Values
Enum Value Description

annotationTypeRef

A unique, numeric identifier for the annotationType.

color

The display color of the anntoation type.

isArchived

A boolean flag indicating whether the annotation type is archived. This affects whether it is displayed in the UI.

name

A descriptive, human-readable name
Example
"annotationTypeRef"

AnnotationTypeTP_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

AnnotationTypeTP_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

AnnotationTypeTP_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

AnnotationTypeTP_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

AnnotationTypeTP_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

AnnotationTypeTP_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

AnnotationTypeTP_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
Example
{"annotationTypeRef": "asc"}

Boolean

Boolean_comparison_exp

Fields
Input Field Description
_eq - Boolean Returns true if the event value is equal to the given value; false otherwise.
_gt - Boolean Returns true if the event value is greater than the given value; false otherwise.
_gte - Boolean Returns true if the event value is greater than the given value; false otherwise.
_in - [Boolean!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - Boolean Returns true if the event value is less than the given value; false otherwise.
_lte - Boolean Returns true if the event value is less than the given value; false otherwise.
_neq - Boolean Returns true if the event value is not equal to the given value; false otherwise.
_nin - [Boolean!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": false,
  "_gt": false,
  "_gte": false,
  "_in": [false],
  "_is_null": false,
  "_lt": true,
  "_lte": false,
  "_neq": true,
  "_nin": [true]
}

CompanyTP

Description

All data is isolated within a Company. The Machines, Annotation Types, Activity Types, Operators, and other data is scoped to this level. Information like the name, address, and timezone are available on a Company.

Fields
Field Name Description
activityTypes - [ActivityType!]! A set of activity types specific to the company.
Arguments
distinct_on - [ActivityType_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [ActivityType_order_by!]

Sort the returned array by one or more fields of it's elements.

where - ActivityType_bool_exp

Filter the data by using a (nested) boolean expression.

addressText - String The full address as as string.
annotationTypes - [AnnotationTypeTP!]!
Arguments
distinct_on - [AnnotationTypeTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [AnnotationTypeTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - AnnotationTypeTP_bool_exp

Filter the data by using a (nested) boolean expression.

companyId - String A globally unique identifier (UUID) for the company.
location - Location
machines - [MachineTP!]! The set machines.
Arguments
distinct_on - [MachineTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [MachineTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - MachineTP_bool_exp

Filter the data by using a (nested) boolean expression.

name - String A descriptive, human-readable name
operations - [Operation!]!
Arguments
distinct_on - [Operation_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [Operation_order_by!]

Sort the returned array by one or more fields of it's elements.

where - Operation_bool_exp

Filter the data by using a (nested) boolean expression.

operators - [OperatorTP!]! Returns a collection of Operators
Arguments
distinct_on - [OperatorTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [OperatorTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - OperatorTP_bool_exp

Filter the data by using a (nested) boolean expression.

rejectReasons - [RejectReason!]! A set of reject reasons specific to the company.
Arguments
distinct_on - [RejectReason_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [RejectReason_order_by!]

Sort the returned array by one or more fields of it's elements.

where - RejectReason_bool_exp

Filter the data by using a (nested) boolean expression.

timeZone - String The timezone the company is associated with. Must be an
Example
{"name": "Cyberdyne"}

CompanyTP_bool_exp

Description

Boolean expressions to filter CompanyTP. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [CompanyTP_bool_exp!] Combines the given expressions using a logical AND
_not - CompanyTP_bool_exp Negates the result of the given expression.
_or - [CompanyTP_bool_exp!] Combines the given expressions using a logical OR.
activityTypes - ActivityType_bool_exp A set of activity types specific to the company.
addressText - String_comparison_exp The full address as as string.
annotationTypes - AnnotationTypeTP_bool_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
location - Location_bool_exp
machines - MachineTP_bool_exp The set machines.
name - String_comparison_exp A descriptive, human-readable name
operations - Operation_bool_exp
operators - OperatorTP_bool_exp Returns a collection of Operators
rejectReasons - RejectReason_bool_exp A set of reject reasons specific to the company.
timeZone - String_comparison_exp The timezone the company is associated with. Must be an
Example
{
  "_and": [CompanyTP_bool_exp],
  "_not": CompanyTP_bool_exp,
  "_or": [CompanyTP_bool_exp],
  "activityTypes": ActivityType_bool_exp,
  "addressText": String_comparison_exp,
  "annotationTypes": AnnotationTypeTP_bool_exp,
  "companyId": String_comparison_exp,
  "location": Location_bool_exp,
  "machines": MachineTP_bool_exp,
  "name": String_comparison_exp,
  "operations": Operation_bool_exp,
  "operators": OperatorTP_bool_exp,
  "rejectReasons": RejectReason_bool_exp,
  "timeZone": String_comparison_exp
}

CompanyTP_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
addressText - order_by The full address as as string.
annotationTypes_aggregate - AnnotationTypeTP_aggregate_order_by
companyId - order_by A globally unique identifier (UUID) for the company.
location - Location_order_by
name - order_by A descriptive, human-readable name
timeZone - order_by The timezone the company is associated with. Must be an
Example
{
  "addressText": "asc",
  "annotationTypes_aggregate": AnnotationTypeTP_aggregate_order_by,
  "companyId": "asc",
  "location": Location_order_by,
  "name": "asc",
  "timeZone": "asc"
}

CurrentAlarmRT

Fields
Field Name Description
description - String
label - String
latestEventAt - timestamptz!
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - String
startAt - timestamptz The start of an interval.
Example
{
  "description": "abc123",
  "label": "abc123",
  "latestEventAt": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 123,
  "metricKey": "xyz789",
  "nativeCode": "xyz789",
  "startAt": "2022-05-07T01:08:03.420Z"
}

CurrentAlarmRT_aggregate_order_by

Description

Sort the returned array by one or more fields of it's elements.

Example
{
  "avg": CurrentAlarmRT_avg_order_by,
  "count": "asc",
  "max": CurrentAlarmRT_max_order_by,
  "min": CurrentAlarmRT_min_order_by,
  "stddev": CurrentAlarmRT_stddev_order_by,
  "stddev_pop": CurrentAlarmRT_stddev_pop_order_by,
  "stddev_samp": CurrentAlarmRT_stddev_samp_order_by,
  "sum": CurrentAlarmRT_sum_order_by,
  "var_pop": CurrentAlarmRT_var_pop_order_by,
  "var_samp": CurrentAlarmRT_var_samp_order_by,
  "variance": CurrentAlarmRT_variance_order_by
}

CurrentAlarmRT_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentAlarmRT_bool_exp

Description

Boolean expressions to filter CurrentAlarmRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [CurrentAlarmRT_bool_exp!] Combines the given expressions using a logical AND
_not - CurrentAlarmRT_bool_exp Negates the result of the given expression.
_or - [CurrentAlarmRT_bool_exp!] Combines the given expressions using a logical OR.
description - String_comparison_exp
label - String_comparison_exp
latestEventAt - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - String_comparison_exp
startAt - timestamptz_comparison_exp The start of an interval.
Example
{
  "_and": [CurrentAlarmRT_bool_exp],
  "_not": CurrentAlarmRT_bool_exp,
  "_or": [CurrentAlarmRT_bool_exp],
  "description": String_comparison_exp,
  "label": String_comparison_exp,
  "latestEventAt": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "nativeCode": String_comparison_exp,
  "startAt": timestamptz_comparison_exp
}

CurrentAlarmRT_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
description - order_by
label - order_by
latestEventAt - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - order_by
startAt - order_by The start of an interval.
Example
{
  "description": "asc",
  "label": "asc",
  "latestEventAt": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "nativeCode": "asc",
  "startAt": "asc"
}

CurrentAlarmRT_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
description - order_by
label - order_by
latestEventAt - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - order_by
startAt - order_by The start of an interval.
Example
{
  "description": "asc",
  "label": "asc",
  "latestEventAt": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "nativeCode": "asc",
  "startAt": "asc"
}

CurrentAlarmRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
description - order_by
label - order_by
latestEventAt - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
nativeCode - order_by
startAt - order_by The start of an interval.
Example
{
  "description": "asc",
  "label": "asc",
  "latestEventAt": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "nativeCode": "asc",
  "startAt": "asc"
}

CurrentAlarmRT_select_column

Values
Enum Value Description

description

label

latestEventAt

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

nativeCode

startAt

The start of an interval.
Example
"description"

CurrentAlarmRT_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentAlarmRT_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentAlarmRT_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentAlarmRT_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentAlarmRT_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentAlarmRT_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentAlarmRT_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT

Fields
Field Name Description
latestEventAt - timestamptz!
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
startAt - timestamptz The start of an interval.
value - String The value observed at the eventTime.
Example
{
  "latestEventAt": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 123,
  "metricKey": "xyz789",
  "startAt": "2022-05-07T01:08:03.420Z",
  "value": "xyz789"
}

CurrentStateRT_aggregate_order_by

Description

Sort the returned array by one or more fields of it's elements.

Example
{
  "avg": CurrentStateRT_avg_order_by,
  "count": "asc",
  "max": CurrentStateRT_max_order_by,
  "min": CurrentStateRT_min_order_by,
  "stddev": CurrentStateRT_stddev_order_by,
  "stddev_pop": CurrentStateRT_stddev_pop_order_by,
  "stddev_samp": CurrentStateRT_stddev_samp_order_by,
  "sum": CurrentStateRT_sum_order_by,
  "var_pop": CurrentStateRT_var_pop_order_by,
  "var_samp": CurrentStateRT_var_samp_order_by,
  "variance": CurrentStateRT_variance_order_by
}

CurrentStateRT_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT_bool_exp

Description

Boolean expressions to filter CurrentStateRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [CurrentStateRT_bool_exp!] Combines the given expressions using a logical AND
_not - CurrentStateRT_bool_exp Negates the result of the given expression.
_or - [CurrentStateRT_bool_exp!] Combines the given expressions using a logical OR.
latestEventAt - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
startAt - timestamptz_comparison_exp The start of an interval.
value - String_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [CurrentStateRT_bool_exp],
  "_not": CurrentStateRT_bool_exp,
  "_or": [CurrentStateRT_bool_exp],
  "latestEventAt": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "startAt": timestamptz_comparison_exp,
  "value": String_comparison_exp
}

CurrentStateRT_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
latestEventAt - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
startAt - order_by The start of an interval.
value - order_by The value observed at the eventTime.
Example
{
  "latestEventAt": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "startAt": "asc",
  "value": "asc"
}

CurrentStateRT_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
latestEventAt - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
startAt - order_by The start of an interval.
value - order_by The value observed at the eventTime.
Example
{
  "latestEventAt": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "startAt": "asc",
  "value": "asc"
}

CurrentStateRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
latestEventAt - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
startAt - order_by The start of an interval.
value - order_by The value observed at the eventTime.
Example
{
  "latestEventAt": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "startAt": "asc",
  "value": "asc"
}

CurrentStateRT_select_column

Values
Enum Value Description

latestEventAt

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

startAt

The start of an interval.

value

The value observed at the eventTime.
Example
"latestEventAt"

CurrentStateRT_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CurrentStateRT_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

CycleTimeStatsRT

Fields
Field Name Description
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
medianCycleTime - numeric
operation - Operation
operationId - String A globally unique identifier (UUID) for the operation.
partCount - Int
Example
{
  "machine": MachineTP,
  "machineRef": 123,
  "medianCycleTime": numeric,
  "operation": Operation,
  "operationId": "abc123",
  "partCount": 987
}

CycleTimeStatsRT_bool_exp

Description

Boolean expressions to filter CycleTimeStatsRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [CycleTimeStatsRT_bool_exp!] Combines the given expressions using a logical AND
_not - CycleTimeStatsRT_bool_exp Negates the result of the given expression.
_or - [CycleTimeStatsRT_bool_exp!] Combines the given expressions using a logical OR.
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
medianCycleTime - numeric_comparison_exp
operation - Operation_bool_exp
operationId - String_comparison_exp A globally unique identifier (UUID) for the operation.
partCount - Int_comparison_exp
Example
{
  "_and": [CycleTimeStatsRT_bool_exp],
  "_not": CycleTimeStatsRT_bool_exp,
  "_or": [CycleTimeStatsRT_bool_exp],
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "medianCycleTime": numeric_comparison_exp,
  "operation": Operation_bool_exp,
  "operationId": String_comparison_exp,
  "partCount": Int_comparison_exp
}

CycleTimeStatsRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
medianCycleTime - order_by
operation - Operation_order_by
operationId - order_by A globally unique identifier (UUID) for the operation.
partCount - order_by
Example
{
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "medianCycleTime": "asc",
  "operation": Operation_order_by,
  "operationId": "asc",
  "partCount": "asc"
}

CycleTimeStatsRT_select_column

Values
Enum Value Description

machineRef

A unique, numeric identifier for the machine.

medianCycleTime

operationId

A globally unique identifier (UUID) for the operation.

partCount

Example
"machineRef"

Event

Fields
Field Name Description
eventTime - timestamptz!
machineRef - Int! A unique, numeric identifier for the machine.
metricKey - String! Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int! An integer value that determines the order of events with the same eventTime and metric.
value - jsonb The value observed at the eventTime.
Arguments
path - String
Example
{
  "eventTime": "2022-05-07T01:08:03.420Z",
  "machineRef": 123,
  "metricKey": "xyz789",
  "sequence": 123,
  "value": jsonb
}

Event_bool_exp

Description

Boolean expressions to filter Event. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [Event_bool_exp!] Combines the given expressions using a logical AND
_not - Event_bool_exp Negates the result of the given expression.
_or - [Event_bool_exp!] Combines the given expressions using a logical OR.
eventTime - timestamptz_comparison_exp
machine - business_machine_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int_comparison_exp An integer value that determines the order of events with the same eventTime and metric.
value - jsonb_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [Event_bool_exp],
  "_not": Event_bool_exp,
  "_or": [Event_bool_exp],
  "eventTime": timestamptz_comparison_exp,
  "machine": business_machine_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "sequence": Int_comparison_exp,
  "value": jsonb_comparison_exp
}

Event_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machine - business_machine_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{
  "eventTime": "asc",
  "machine": business_machine_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "sequence": "asc",
  "value": "asc"
}

Event_select_column

Values
Enum Value Description

eventTime

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

sequence

An integer value that determines the order of events with the same eventTime and metric.

value

The value observed at the eventTime.
Example
"eventTime"

Float

Example
123.45

Float_comparison_exp

Fields
Input Field Description
_eq - Float Returns true if the event value is equal to the given value; false otherwise.
_gt - Float Returns true if the event value is greater than the given value; false otherwise.
_gte - Float Returns true if the event value is greater than the given value; false otherwise.
_in - [Float!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - Float Returns true if the event value is less than the given value; false otherwise.
_lte - Float Returns true if the event value is less than the given value; false otherwise.
_neq - Float Returns true if the event value is not equal to the given value; false otherwise.
_nin - [Float!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": 123.45,
  "_gt": 987.65,
  "_gte": 987.65,
  "_in": [123.45],
  "_is_null": false,
  "_lt": 987.65,
  "_lte": 123.45,
  "_neq": 987.65,
  "_nin": [987.65]
}

Int

Example
987

Int_comparison_exp

Fields
Input Field Description
_eq - Int Returns true if the event value is equal to the given value; false otherwise.
_gt - Int Returns true if the event value is greater than the given value; false otherwise.
_gte - Int Returns true if the event value is greater than the given value; false otherwise.
_in - [Int!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - Int Returns true if the event value is less than the given value; false otherwise.
_lte - Int Returns true if the event value is less than the given value; false otherwise.
_neq - Int Returns true if the event value is not equal to the given value; false otherwise.
_nin - [Int!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": 123,
  "_gt": 123,
  "_gte": 987,
  "_in": [987],
  "_is_null": true,
  "_lt": 123,
  "_lte": 123,
  "_neq": 987,
  "_nin": [987]
}

LatestPositionRT

Fields
Field Name Description
eventTime - timestamptz
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
x - float8 The x coordinate value.
y - float8 The y coordinate value.
z - float8 The z coordinate value.
Example
{
  "eventTime": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 123,
  "metricKey": "xyz789",
  "x": 43.12,
  "y": 43.12,
  "z": 43.12
}

LatestPositionRT_aggregate_order_by

Example
{
  "avg": LatestPositionRT_avg_order_by,
  "count": "asc",
  "max": LatestPositionRT_max_order_by,
  "min": LatestPositionRT_min_order_by,
  "stddev": LatestPositionRT_stddev_order_by,
  "stddev_pop": LatestPositionRT_stddev_pop_order_by,
  "stddev_samp": LatestPositionRT_stddev_samp_order_by,
  "sum": LatestPositionRT_sum_order_by,
  "var_pop": LatestPositionRT_var_pop_order_by,
  "var_samp": LatestPositionRT_var_samp_order_by,
  "variance": LatestPositionRT_variance_order_by
}

LatestPositionRT_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestPositionRT_bool_exp

Description

Boolean expressions to filter LatestPositionRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [LatestPositionRT_bool_exp!] Combines the given expressions using a logical AND
_not - LatestPositionRT_bool_exp Negates the result of the given expression.
_or - [LatestPositionRT_bool_exp!] Combines the given expressions using a logical OR.
eventTime - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
x - float8_comparison_exp The x coordinate value.
y - float8_comparison_exp The y coordinate value.
z - float8_comparison_exp The z coordinate value.
Example
{
  "_and": [LatestPositionRT_bool_exp],
  "_not": LatestPositionRT_bool_exp,
  "_or": [LatestPositionRT_bool_exp],
  "eventTime": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "x": float8_comparison_exp,
  "y": float8_comparison_exp,
  "z": float8_comparison_exp
}

LatestPositionRT_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{
  "eventTime": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "x": "asc",
  "y": "asc",
  "z": "asc"
}

LatestPositionRT_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{
  "eventTime": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "x": "asc",
  "y": "asc",
  "z": "asc"
}

LatestPositionRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{
  "eventTime": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "x": "asc",
  "y": "asc",
  "z": "asc"
}

LatestPositionRT_select_column

Values
Enum Value Description

eventTime

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

x

The x coordinate value.

y

The y coordinate value.

z

The z coordinate value.
Example
"eventTime"

LatestPositionRT_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestPositionRT_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestPositionRT_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestPositionRT_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestPositionRT_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestPositionRT_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestPositionRT_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{"machineRef": "asc", "x": "asc", "y": "asc", "z": "asc"}

LatestQuantityRT

Fields
Field Name Description
eventTime - timestamptz
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int An integer value that determines the order of events with the same eventTime and metric.
value - float8 The value observed at the eventTime.
Example
{
  "eventTime": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 123,
  "metricKey": "abc123",
  "sequence": 123,
  "value": 43.12
}

LatestQuantityRT_aggregate_order_by

Example
{
  "avg": LatestQuantityRT_avg_order_by,
  "count": "asc",
  "max": LatestQuantityRT_max_order_by,
  "min": LatestQuantityRT_min_order_by,
  "stddev": LatestQuantityRT_stddev_order_by,
  "stddev_pop": LatestQuantityRT_stddev_pop_order_by,
  "stddev_samp": LatestQuantityRT_stddev_samp_order_by,
  "sum": LatestQuantityRT_sum_order_by,
  "var_pop": LatestQuantityRT_var_pop_order_by,
  "var_samp": LatestQuantityRT_var_samp_order_by,
  "variance": LatestQuantityRT_variance_order_by
}

LatestQuantityRT_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

LatestQuantityRT_bool_exp

Description

Boolean expressions to filter LatestQuantityRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [LatestQuantityRT_bool_exp!] Combines the given expressions using a logical AND
_not - LatestQuantityRT_bool_exp Negates the result of the given expression.
_or - [LatestQuantityRT_bool_exp!] Combines the given expressions using a logical OR.
eventTime - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int_comparison_exp An integer value that determines the order of events with the same eventTime and metric.
value - float8_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [LatestQuantityRT_bool_exp],
  "_not": LatestQuantityRT_bool_exp,
  "_or": [LatestQuantityRT_bool_exp],
  "eventTime": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "sequence": Int_comparison_exp,
  "value": float8_comparison_exp
}

LatestQuantityRT_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{
  "eventTime": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "sequence": "asc",
  "value": "asc"
}

LatestQuantityRT_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{
  "eventTime": "asc",
  "machineRef": "asc",
  "metricKey": "asc",
  "sequence": "asc",
  "value": "asc"
}

LatestQuantityRT_select_column

Values
Enum Value Description

eventTime

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

sequence

An integer value that determines the order of events with the same eventTime and metric.

value

The value observed at the eventTime.
Example
"eventTime"

LatestQuantityRT_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

LatestQuantityRT_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

LatestQuantityRT_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

LatestQuantityRT_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

LatestQuantityRT_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

LatestQuantityRT_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

LatestQuantityRT_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{"machineRef": "asc", "sequence": "asc", "value": "asc"}

Location

Fields
Field Name Description
company - CompanyTP
companyId - String! A globally unique identifier (UUID) for the company.
locationRef - Int! A unique, numeric identifier for the location.
Example
{
  "company": {"name": "Cyberdyne"},
  "companyId": "xyz789",
  "locationRef": 123
}

Location_bool_exp

Description

Boolean expressions to filter Location. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [Location_bool_exp!] Combines the given expressions using a logical AND
_not - Location_bool_exp Negates the result of the given expression.
_or - [Location_bool_exp!] Combines the given expressions using a logical OR.
company - CompanyTP_bool_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
locationRef - Int_comparison_exp A unique, numeric identifier for the location.
Example
{
  "_and": [Location_bool_exp],
  "_not": Location_bool_exp,
  "_or": [Location_bool_exp],
  "company": CompanyTP_bool_exp,
  "companyId": String_comparison_exp,
  "locationRef": Int_comparison_exp
}

Location_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
company - CompanyTP_order_by
companyId - order_by A globally unique identifier (UUID) for the company.
locationRef - order_by A unique, numeric identifier for the location.
Example
{
  "company": CompanyTP_order_by,
  "companyId": "asc",
  "locationRef": "asc"
}

Location_select_column

Values
Enum Value Description

companyId

A globally unique identifier (UUID) for the company.

locationRef

A unique, numeric identifier for the location.
Example
"companyId"

MachineTP

Description

A Machine is at the heart of it all. All business-related operational data stems from the Machine. Annotations represent categorized periods of time when the Machine was idle. Activities capture slices of time where the Machine was performing a particular Operation. Operator Runs represent when a specific Operator was responsible for a given Machine’s productivity. This operational data can be driven by human input, but is also often driven by diagnostic data reported directly from the Machine itself. The most relevant machine data comes in the form of States, Part Counts, and Alarms.

Fields
Field Name Description
activitySets - [ActivitySet!]!
Arguments
distinct_on - [ActivitySet_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [ActivitySet_order_by!]

Sort the returned array by one or more fields of it's elements.

where - ActivitySet_bool_exp

Filter the data by using a (nested) boolean expression.

annotations - [AnnotationTP!]!
Arguments
distinct_on - [AnnotationTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [AnnotationTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - AnnotationTP_bool_exp

Filter the data by using a (nested) boolean expression.

company - CompanyTP
companyId - String A globally unique identifier (UUID) for the company.
currentAlarms - [CurrentAlarmRT!]
Arguments
distinct_on - [CurrentAlarmRT_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [CurrentAlarmRT_order_by!]

Sort the returned array by one or more fields of it's elements.

where - CurrentAlarmRT_bool_exp

Filter the data by using a (nested) boolean expression.

currentStates - [CurrentStateRT!]
Arguments
distinct_on - [CurrentStateRT_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [CurrentStateRT_order_by!]

Sort the returned array by one or more fields of it's elements.

where - CurrentStateRT_bool_exp

Filter the data by using a (nested) boolean expression.

decommissionedAt - timestamptz
erpResources - [erpResources!]!
Arguments
distinct_on - [erpResources_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpResources_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpResources_bool_exp

Filter the data by using a (nested) boolean expression.

latestPositions - [LatestPositionRT!]
Arguments
distinct_on - [LatestPositionRT_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [LatestPositionRT_order_by!]

Sort the returned array by one or more fields of it's elements.

where - LatestPositionRT_bool_exp

Filter the data by using a (nested) boolean expression.

latestQuantities - [LatestQuantityRT!]
Arguments
distinct_on - [LatestQuantityRT_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

where - LatestQuantityRT_bool_exp

Filter the data by using a (nested) boolean expression.

machineId - String A globally unique identifier (UUID) for the machine.
machineRef - Int A unique, numeric identifier for the machine.
make - String
metrics - [MetricTP!]!
Arguments
distinct_on - [MetricTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [MetricTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - MetricTP_bool_exp

Filter the data by using a (nested) boolean expression.

model - String
name - String A descriptive, human-readable name
operatorRuns - [OperatorRunTP!]!
Arguments
distinct_on - [OperatorRunTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [OperatorRunTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - OperatorRunTP_bool_exp

Filter the data by using a (nested) boolean expression.

partCountCorrections - [PartCountCorrection!]!
Arguments
distinct_on - [PartCountCorrection_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [PartCountCorrection_order_by!]

Sort the returned array by one or more fields of it's elements.

where - PartCountCorrection_bool_exp

Filter the data by using a (nested) boolean expression.

partCountMetricKey - String
rejects - [Reject!]!
Arguments
distinct_on - [Reject_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [Reject_order_by!]

Sort the returned array by one or more fields of it's elements.

where - Reject_bool_exp

Filter the data by using a (nested) boolean expression.

Example
{
  "activitySets": [ActivitySet],
  "annotations": [AnnotationTP],
  "company": {
    "companyId": "01c08a38-f33d-4348-9918-e6957cab5c27",
    "name": "Cyberdyne"
  },
  "companyId": "abc123",
  "currentAlarms": [CurrentAlarmRT],
  "currentStates": [CurrentStateRT],
  "decommissionedAt": "2022-05-07T01:08:03.420Z",
  "erpResources": [erpResources],
  "latestPositions": [LatestPositionRT],
  "latestQuantities": [LatestQuantityRT],
  "machineId": "abc123",
  "machineRef": 987,
  "make": "Citizen",
  "metrics": [MetricTP],
  "model": "K16E",
  "name": "Citizen B12",
  "operatorRuns": [OperatorRunTP],
  "partCountCorrections": [PartCountCorrection],
  "partCountMetricKey": "abc123",
  "rejects": [Reject]
}

MachineTP_bool_exp

Description

Boolean expressions to filter MachineTP. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [MachineTP_bool_exp!] Combines the given expressions using a logical AND
_not - MachineTP_bool_exp Negates the result of the given expression.
_or - [MachineTP_bool_exp!] Combines the given expressions using a logical OR.
activitySets - ActivitySet_bool_exp
annotations - AnnotationTP_bool_exp
company - CompanyTP_bool_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
currentAlarms - CurrentAlarmRT_bool_exp
currentStates - CurrentStateRT_bool_exp
decommissionedAt - timestamptz_comparison_exp
latestPositions - LatestPositionRT_bool_exp
latestQuantities - LatestQuantityRT_bool_exp
machineId - String_comparison_exp A globally unique identifier (UUID) for the machine.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
make - String_comparison_exp
metrics - MetricTP_bool_exp
model - String_comparison_exp
name - String_comparison_exp A descriptive, human-readable name
operatorRuns - OperatorRunTP_bool_exp
partCountCorrections - PartCountCorrection_bool_exp
partCountMetricKey - String_comparison_exp
rejects - Reject_bool_exp
Example
{
  "_and": [MachineTP_bool_exp],
  "_not": MachineTP_bool_exp,
  "_or": [MachineTP_bool_exp],
  "activitySets": ActivitySet_bool_exp,
  "annotations": AnnotationTP_bool_exp,
  "company": CompanyTP_bool_exp,
  "companyId": String_comparison_exp,
  "currentAlarms": CurrentAlarmRT_bool_exp,
  "currentStates": CurrentStateRT_bool_exp,
  "decommissionedAt": timestamptz_comparison_exp,
  "latestPositions": LatestPositionRT_bool_exp,
  "latestQuantities": LatestQuantityRT_bool_exp,
  "machineId": String_comparison_exp,
  "machineRef": Int_comparison_exp,
  "make": String_comparison_exp,
  "metrics": MetricTP_bool_exp,
  "model": String_comparison_exp,
  "name": String_comparison_exp,
  "operatorRuns": OperatorRunTP_bool_exp,
  "partCountCorrections": PartCountCorrection_bool_exp,
  "partCountMetricKey": String_comparison_exp,
  "rejects": Reject_bool_exp
}

MachineTP_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotations_aggregate - AnnotationTP_aggregate_order_by
company - CompanyTP_order_by
companyId - order_by A globally unique identifier (UUID) for the company.
currentAlarms_aggregate - CurrentAlarmRT_aggregate_order_by
currentStates_aggregate - CurrentStateRT_aggregate_order_by
decommissionedAt - order_by
latestPositions_aggregate - LatestPositionRT_aggregate_order_by
latestQuantities_aggregate - LatestQuantityRT_aggregate_order_by
machineId - order_by A globally unique identifier (UUID) for the machine.
machineRef - order_by A unique, numeric identifier for the machine.
make - order_by
metrics_aggregate - MetricTP_aggregate_order_by
model - order_by
name - order_by A descriptive, human-readable name
partCountMetricKey - order_by
Example
{
  "annotations_aggregate": AnnotationTP_aggregate_order_by,
  "company": CompanyTP_order_by,
  "companyId": "asc",
  "currentAlarms_aggregate": CurrentAlarmRT_aggregate_order_by,
  "currentStates_aggregate": CurrentStateRT_aggregate_order_by,
  "decommissionedAt": "asc",
  "latestPositions_aggregate": LatestPositionRT_aggregate_order_by,
  "latestQuantities_aggregate": LatestQuantityRT_aggregate_order_by,
  "machineId": "asc",
  "machineRef": "asc",
  "make": "asc",
  "metrics_aggregate": MetricTP_aggregate_order_by,
  "model": "asc",
  "name": "asc",
  "partCountMetricKey": "asc"
}

MachineTP_select_column

Values
Enum Value Description

companyId

A globally unique identifier (UUID) for the company.

decommissionedAt

machineId

A globally unique identifier (UUID) for the machine.

machineRef

A unique, numeric identifier for the machine.

make

model

name

A descriptive, human-readable name

partCountMetricKey

Example
"companyId"

MetricTP

Fields
Field Name Description
machineRef - Int! A unique, numeric identifier for the machine.
metricKey - String! Each metric is globally identified by the combination of machineRef and metricKey.
subtype - String! The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
type - String! The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
Example
{
  "machineRef": 123,
  "metricKey": "abc123",
  "subtype": "xyz789",
  "type": "abc123"
}

MetricTP_aggregate_order_by

Description

Sort the returned array by one or more fields of it's elements.

Example
{
  "avg": MetricTP_avg_order_by,
  "count": "asc",
  "max": MetricTP_max_order_by,
  "min": MetricTP_min_order_by,
  "stddev": MetricTP_stddev_order_by,
  "stddev_pop": MetricTP_stddev_pop_order_by,
  "stddev_samp": MetricTP_stddev_samp_order_by,
  "sum": MetricTP_sum_order_by,
  "var_pop": MetricTP_var_pop_order_by,
  "var_samp": MetricTP_var_samp_order_by,
  "variance": MetricTP_variance_order_by
}

MetricTP_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

MetricTP_bool_exp

Description

Boolean expressions to filter MetricTP. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [MetricTP_bool_exp!] Combines the given expressions using a logical AND
_not - MetricTP_bool_exp Negates the result of the given expression.
_or - [MetricTP_bool_exp!] Combines the given expressions using a logical OR.
machine - business_machine_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
subtype - String_comparison_exp The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
type - String_comparison_exp The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
Example
{
  "_and": [MetricTP_bool_exp],
  "_not": MetricTP_bool_exp,
  "_or": [MetricTP_bool_exp],
  "machine": business_machine_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "subtype": String_comparison_exp,
  "type": String_comparison_exp
}

MetricTP_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
subtype - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
type - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
Example
{"machineRef": "asc", "metricKey": "asc", "subtype": "asc", "type": "asc"}

MetricTP_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
subtype - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
type - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
Example
{"machineRef": "asc", "metricKey": "asc", "subtype": "asc", "type": "asc"}

MetricTP_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machine - business_machine_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
subtype - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
type - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
Example
{
  "machine": business_machine_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "subtype": "asc",
  "type": "asc"
}

MetricTP_select_column

Values
Enum Value Description

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

subtype

The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.

type

The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
Example
"machineRef"

MetricTP_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

MetricTP_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

MetricTP_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

MetricTP_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

MetricTP_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

MetricTP_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

MetricTP_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machineRef - order_by A unique, numeric identifier for the machine.
Example
{"machineRef": "asc"}

Operation

Description

Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.

Fields
Field Name Description
activitySets - [ActivitySet!]!
Arguments
distinct_on - [ActivitySet_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [ActivitySet_order_by!]

Sort the returned array by one or more fields of it's elements.

where - ActivitySet_bool_exp

Filter the data by using a (nested) boolean expression.

company - CompanyTP
description - String
name - String A descriptive, human-readable name
operationId - String A globally unique identifier (UUID) for the operation.
partNumber - String
sequenceNumber - String
Example
{
  "activitySets": [ActivitySet],
  "company": {"name": "Cyberdyne"},
  "description": "xyz789",
  "name": "xyz789",
  "operationId": "abc123",
  "partNumber": "xyz789",
  "sequenceNumber": "abc123"
}

Operation_bool_exp

Description

Boolean expressions to filter Operation. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [Operation_bool_exp!] Combines the given expressions using a logical AND
_not - Operation_bool_exp Negates the result of the given expression.
_or - [Operation_bool_exp!] Combines the given expressions using a logical OR.
activitySets - ActivitySet_bool_exp
company - CompanyTP_bool_exp
description - String_comparison_exp
name - String_comparison_exp A descriptive, human-readable name
operationId - String_comparison_exp A globally unique identifier (UUID) for the operation.
partNumber - String_comparison_exp
sequenceNumber - String_comparison_exp
Example
{
  "_and": [Operation_bool_exp],
  "_not": Operation_bool_exp,
  "_or": [Operation_bool_exp],
  "activitySets": ActivitySet_bool_exp,
  "company": CompanyTP_bool_exp,
  "description": String_comparison_exp,
  "name": String_comparison_exp,
  "operationId": String_comparison_exp,
  "partNumber": String_comparison_exp,
  "sequenceNumber": String_comparison_exp
}

Operation_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
company - CompanyTP_order_by
description - order_by
name - order_by A descriptive, human-readable name
operationId - order_by A globally unique identifier (UUID) for the operation.
partNumber - order_by
sequenceNumber - order_by
Example
{
  "company": CompanyTP_order_by,
  "description": "asc",
  "name": "asc",
  "operationId": "asc",
  "partNumber": "asc",
  "sequenceNumber": "asc"
}

Operation_select_column

Values
Enum Value Description

description

name

A descriptive, human-readable name

operationId

A globally unique identifier (UUID) for the operation.

partNumber

sequenceNumber

Example
"description"

OperatorRunTP

Description

Operator Runs identify periods of time when a particular operator is responsible for a given Machine’s productivity.

Fields
Field Name Description
endAt - timestamptz The end of an interval. Intervals are right-exclusive.
machine - MachineTP The machine the event originates from.
operator - OperatorTP
operatorRunRef - Int A unique, numeric identifier for the operatorRun.
startAt - timestamptz The start of an interval.
Example
{
  "endAt": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "operator": OperatorTP,
  "operatorRunRef": 987,
  "startAt": "2022-05-07T01:08:03.420Z"
}

OperatorRunTP_bool_exp

Description

Boolean expressions to filter OperatorRunTP. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [OperatorRunTP_bool_exp!] Combines the given expressions using a logical AND
_not - OperatorRunTP_bool_exp Negates the result of the given expression.
_or - [OperatorRunTP_bool_exp!] Combines the given expressions using a logical OR.
endAt - timestamptz_comparison_exp The end of an interval. Intervals are right-exclusive.
machine - MachineTP_bool_exp The machine the event originates from.
operator - OperatorTP_bool_exp
operatorRunRef - Int_comparison_exp A unique, numeric identifier for the operatorRun.
startAt - timestamptz_comparison_exp The start of an interval.
Example
{
  "_and": [OperatorRunTP_bool_exp],
  "_not": OperatorRunTP_bool_exp,
  "_or": [OperatorRunTP_bool_exp],
  "endAt": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "operator": OperatorTP_bool_exp,
  "operatorRunRef": Int_comparison_exp,
  "startAt": timestamptz_comparison_exp
}

OperatorRunTP_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
endAt - order_by The end of an interval. Intervals are right-exclusive.
machine - MachineTP_order_by The machine the event originates from.
operator - OperatorTP_order_by
operatorRunRef - order_by A unique, numeric identifier for the operatorRun.
startAt - order_by The start of an interval.
Example
{
  "endAt": "asc",
  "machine": MachineTP_order_by,
  "operator": OperatorTP_order_by,
  "operatorRunRef": "asc",
  "startAt": "asc"
}

OperatorRunTP_select_column

Values
Enum Value Description

endAt

The end of an interval. Intervals are right-exclusive.

operatorRunRef

A unique, numeric identifier for the operatorRun.

startAt

The start of an interval.
Example
"endAt"

OperatorTP

Fields
Field Name Description
company - CompanyTP
isArchived - Boolean
name - String A descriptive, human-readable name
operatorRef - Int A unique, numeric identifier for the operator.
operatorRuns - [OperatorRunTP!]!
Arguments
distinct_on - [OperatorRunTP_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [OperatorRunTP_order_by!]

Sort the returned array by one or more fields of it's elements.

where - OperatorRunTP_bool_exp

Filter the data by using a (nested) boolean expression.

Example
{
  "company": {"name": "Cyberdyne"},
  "isArchived": true,
  "name": "xyz789",
  "operatorRef": 987,
  "operatorRuns": [OperatorRunTP]
}

OperatorTP_bool_exp

Description

Boolean expressions to filter OperatorTP. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [OperatorTP_bool_exp!] Combines the given expressions using a logical AND
_not - OperatorTP_bool_exp Negates the result of the given expression.
_or - [OperatorTP_bool_exp!] Combines the given expressions using a logical OR.
company - CompanyTP_bool_exp
isArchived - Boolean_comparison_exp
name - String_comparison_exp A descriptive, human-readable name
operatorRef - Int_comparison_exp A unique, numeric identifier for the operator.
operatorRuns - OperatorRunTP_bool_exp
Example
{
  "_and": [OperatorTP_bool_exp],
  "_not": OperatorTP_bool_exp,
  "_or": [OperatorTP_bool_exp],
  "company": CompanyTP_bool_exp,
  "isArchived": Boolean_comparison_exp,
  "name": String_comparison_exp,
  "operatorRef": Int_comparison_exp,
  "operatorRuns": OperatorRunTP_bool_exp
}

OperatorTP_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
company - CompanyTP_order_by
isArchived - order_by
name - order_by A descriptive, human-readable name
operatorRef - order_by A unique, numeric identifier for the operator.
Example
{
  "company": CompanyTP_order_by,
  "isArchived": "asc",
  "name": "asc",
  "operatorRef": "asc"
}

OperatorTP_select_column

Values
Enum Value Description

isArchived

name

A descriptive, human-readable name

operatorRef

A unique, numeric identifier for the operator.
Example
"isArchived"

PartCountCorrection

Description

MachineMetrics identifies when parts are produced by gathering part counter data from the machine. As the part counter increments, the delta represents the number of parts that were produced. There are situations where the behavior of the counter on the machine doesn’t accurately reflect the true number of parts that were produced. Part Count Corrections are used to account for that. The Part Count sum over a given time span should be combined with the Part Count Correction over that same time span to accurately determine the total true parts accounted for.

Fields
Field Name Description
effectiveAt - timestamptz
machine - MachineTP The machine the event originates from.
value - Int The value observed at the eventTime.
Example
{
  "effectiveAt": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "value": 987
}

PartCountCorrection_bool_exp

Description

Boolean expressions to filter PartCountCorrection. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [PartCountCorrection_bool_exp!] Combines the given expressions using a logical AND
_not - PartCountCorrection_bool_exp Negates the result of the given expression.
_or - [PartCountCorrection_bool_exp!] Combines the given expressions using a logical OR.
effectiveAt - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
value - Int_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [PartCountCorrection_bool_exp],
  "_not": PartCountCorrection_bool_exp,
  "_or": [PartCountCorrection_bool_exp],
  "effectiveAt": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "value": Int_comparison_exp
}

PartCountCorrection_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
effectiveAt - order_by
machine - MachineTP_order_by The machine the event originates from.
value - order_by The value observed at the eventTime.
Example
{
  "effectiveAt": "asc",
  "machine": MachineTP_order_by,
  "value": "asc"
}

PartCountCorrection_select_column

Values
Enum Value Description

effectiveAt

value

The value observed at the eventTime.
Example
"effectiveAt"

PartCountRT

Fields
Field Name Description
eventTime - timestamptz
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int An integer value that determines the order of events with the same eventTime and metric.
value - Int The value observed at the eventTime.
Example
{
  "eventTime": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 987,
  "metricKey": "abc123",
  "sequence": 987,
  "value": 123
}

PartCountRT_bool_exp

Description

Boolean expressions to filter PartCountRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [PartCountRT_bool_exp!] Combines the given expressions using a logical AND
_not - PartCountRT_bool_exp Negates the result of the given expression.
_or - [PartCountRT_bool_exp!] Combines the given expressions using a logical OR.
eventTime - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int_comparison_exp An integer value that determines the order of events with the same eventTime and metric.
value - Int_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [PartCountRT_bool_exp],
  "_not": PartCountRT_bool_exp,
  "_or": [PartCountRT_bool_exp],
  "eventTime": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "sequence": Int_comparison_exp,
  "value": Int_comparison_exp
}

PartCountRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{
  "eventTime": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "sequence": "asc",
  "value": "asc"
}

PartCountRT_select_column

Values
Enum Value Description

eventTime

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

sequence

An integer value that determines the order of events with the same eventTime and metric.

value

The value observed at the eventTime.
Example
"eventTime"

PositionRT

Fields
Field Name Description
eventTime - timestamptz
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
x - float8 The x coordinate value.
y - float8 The y coordinate value.
z - float8 The z coordinate value.
Example
{
  "eventTime": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 987,
  "metricKey": "xyz789",
  "x": 43.12,
  "y": 43.12,
  "z": 43.12
}

PositionRT_bool_exp

Description

Boolean expressions to filter PositionRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [PositionRT_bool_exp!] Combines the given expressions using a logical AND
_not - PositionRT_bool_exp Negates the result of the given expression.
_or - [PositionRT_bool_exp!] Combines the given expressions using a logical OR.
eventTime - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
x - float8_comparison_exp The x coordinate value.
y - float8_comparison_exp The y coordinate value.
z - float8_comparison_exp The z coordinate value.
Example
{
  "_and": [PositionRT_bool_exp],
  "_not": PositionRT_bool_exp,
  "_or": [PositionRT_bool_exp],
  "eventTime": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "x": float8_comparison_exp,
  "y": float8_comparison_exp,
  "z": float8_comparison_exp
}

PositionRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
x - order_by The x coordinate value.
y - order_by The y coordinate value.
z - order_by The z coordinate value.
Example
{
  "eventTime": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "x": "asc",
  "y": "asc",
  "z": "asc"
}

PositionRT_select_column

Values
Enum Value Description

eventTime

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

x

The x coordinate value.

y

The y coordinate value.

z

The z coordinate value.
Example
"eventTime"

QuantityRT

Fields
Field Name Description
eventTime - timestamptz
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int An integer value that determines the order of events with the same eventTime and metric.
value - float8 The value observed at the eventTime.
Example
{
  "eventTime": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 987,
  "metricKey": "xyz789",
  "sequence": 987,
  "value": 43.12
}

QuantityRT_bool_exp

Description

Boolean expressions to filter QuantityRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [QuantityRT_bool_exp!] Combines the given expressions using a logical AND
_not - QuantityRT_bool_exp Negates the result of the given expression.
_or - [QuantityRT_bool_exp!] Combines the given expressions using a logical OR.
eventTime - timestamptz_comparison_exp
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
sequence - Int_comparison_exp An integer value that determines the order of events with the same eventTime and metric.
value - float8_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [QuantityRT_bool_exp],
  "_not": QuantityRT_bool_exp,
  "_or": [QuantityRT_bool_exp],
  "eventTime": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "sequence": Int_comparison_exp,
  "value": float8_comparison_exp
}

QuantityRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
eventTime - order_by
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
sequence - order_by An integer value that determines the order of events with the same eventTime and metric.
value - order_by The value observed at the eventTime.
Example
{
  "eventTime": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "sequence": "asc",
  "value": "asc"
}

QuantityRT_select_column

Values
Enum Value Description

eventTime

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

sequence

An integer value that determines the order of events with the same eventTime and metric.

value

The value observed at the eventTime.
Example
"eventTime"

Reject

Description

When a part is determined to be defective, it may be Rejected via the Operator Dashboard or through the Quality functionality within MachineMetrics. Rejects come in two types: Scrap and Non-Conform. Further, each Reject is assigned a Reject Reason.

Fields
Field Name Description
machine - MachineTP The machine the event originates from.
rejectId - String A globally unique identifier (UUID) for the reject.
rejectReason - RejectReason
rejectType - String
rejectedAt - timestamptz
value - Int The value observed at the eventTime.
Example
{
  "machine": MachineTP,
  "rejectId": "abc123",
  "rejectReason": RejectReason,
  "rejectType": "xyz789",
  "rejectedAt": "2022-05-07T01:08:03.420Z",
  "value": 987
}

RejectReason

Description

When a part is rejected, the Reject that is created is assigned a specific Reject Reason. While default Reject Reasons are provided, they can be customized to meet the needs of the business.

Fields
Field Name Description
color - String
company - CompanyTP
erpReason - erpReason
isArchived - Boolean
name - String A descriptive, human-readable name
rejectReasonRef - Int A unique, numeric identifier for the rejectReason.
rejects - [Reject!]!
Arguments
distinct_on - [Reject_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [Reject_order_by!]

Sort the returned array by one or more fields of it's elements.

where - Reject_bool_exp

Filter the data by using a (nested) boolean expression.

Example
{
  "color": "abc123",
  "company": {"name": "Cyberdyne"},
  "erpReason": erpReason,
  "isArchived": false,
  "name": "abc123",
  "rejectReasonRef": 123,
  "rejects": [Reject]
}

RejectReason_bool_exp

Description

Boolean expressions to filter RejectReason. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [RejectReason_bool_exp!] Combines the given expressions using a logical AND
_not - RejectReason_bool_exp Negates the result of the given expression.
_or - [RejectReason_bool_exp!] Combines the given expressions using a logical OR.
color - String_comparison_exp
company - CompanyTP_bool_exp
isArchived - Boolean_comparison_exp
name - String_comparison_exp A descriptive, human-readable name
rejectReasonRef - Int_comparison_exp A unique, numeric identifier for the rejectReason.
rejects - Reject_bool_exp
Example
{
  "_and": [RejectReason_bool_exp],
  "_not": RejectReason_bool_exp,
  "_or": [RejectReason_bool_exp],
  "color": String_comparison_exp,
  "company": CompanyTP_bool_exp,
  "isArchived": Boolean_comparison_exp,
  "name": String_comparison_exp,
  "rejectReasonRef": Int_comparison_exp,
  "rejects": Reject_bool_exp
}

RejectReason_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
color - order_by
company - CompanyTP_order_by
isArchived - order_by
name - order_by A descriptive, human-readable name
rejectReasonRef - order_by A unique, numeric identifier for the rejectReason.
Example
{
  "color": "asc",
  "company": CompanyTP_order_by,
  "isArchived": "asc",
  "name": "asc",
  "rejectReasonRef": "asc"
}

RejectReason_select_column

Values
Enum Value Description

color

isArchived

name

A descriptive, human-readable name

rejectReasonRef

A unique, numeric identifier for the rejectReason.
Example
"color"

Reject_bool_exp

Description

Boolean expressions to filter Reject. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [Reject_bool_exp!] Combines the given expressions using a logical AND
_not - Reject_bool_exp Negates the result of the given expression.
_or - [Reject_bool_exp!] Combines the given expressions using a logical OR.
machine - MachineTP_bool_exp The machine the event originates from.
rejectId - String_comparison_exp A globally unique identifier (UUID) for the reject.
rejectReason - RejectReason_bool_exp
rejectType - String_comparison_exp
rejectedAt - timestamptz_comparison_exp
value - Int_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [Reject_bool_exp],
  "_not": Reject_bool_exp,
  "_or": [Reject_bool_exp],
  "machine": MachineTP_bool_exp,
  "rejectId": String_comparison_exp,
  "rejectReason": RejectReason_bool_exp,
  "rejectType": String_comparison_exp,
  "rejectedAt": timestamptz_comparison_exp,
  "value": Int_comparison_exp
}

Reject_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
machine - MachineTP_order_by The machine the event originates from.
rejectId - order_by A globally unique identifier (UUID) for the reject.
rejectReason - RejectReason_order_by
rejectType - order_by
rejectedAt - order_by
value - order_by The value observed at the eventTime.
Example
{
  "machine": MachineTP_order_by,
  "rejectId": "asc",
  "rejectReason": RejectReason_order_by,
  "rejectType": "asc",
  "rejectedAt": "asc",
  "value": "asc"
}

Reject_select_column

Values
Enum Value Description

rejectId

A globally unique identifier (UUID) for the reject.

rejectType

rejectedAt

value

The value observed at the eventTime.
Example
"rejectId"

StateIntervalRT

Fields
Field Name Description
endAt - timestamptz The end of an interval. Intervals are right-exclusive.
machine - MachineTP The machine the event originates from.
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
startAt - timestamptz The start of an interval.
value - String The value observed at the eventTime.
Example
{
  "endAt": "2022-05-07T01:08:03.420Z",
  "machine": MachineTP,
  "machineRef": 123,
  "metricKey": "xyz789",
  "startAt": "2022-05-07T01:08:03.420Z",
  "value": "abc123"
}

StateIntervalRT_bool_exp

Description

Boolean expressions to filter StateIntervalRT. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [StateIntervalRT_bool_exp!] Combines the given expressions using a logical AND
_not - StateIntervalRT_bool_exp Negates the result of the given expression.
_or - [StateIntervalRT_bool_exp!] Combines the given expressions using a logical OR.
endAt - timestamptz_comparison_exp The end of an interval. Intervals are right-exclusive.
machine - MachineTP_bool_exp The machine the event originates from.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metricKey - String_comparison_exp Each metric is globally identified by the combination of machineRef and metricKey.
startAt - timestamptz_comparison_exp The start of an interval.
value - String_comparison_exp The value observed at the eventTime.
Example
{
  "_and": [StateIntervalRT_bool_exp],
  "_not": StateIntervalRT_bool_exp,
  "_or": [StateIntervalRT_bool_exp],
  "endAt": timestamptz_comparison_exp,
  "machine": MachineTP_bool_exp,
  "machineRef": Int_comparison_exp,
  "metricKey": String_comparison_exp,
  "startAt": timestamptz_comparison_exp,
  "value": String_comparison_exp
}

StateIntervalRT_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
endAt - order_by The end of an interval. Intervals are right-exclusive.
machine - MachineTP_order_by The machine the event originates from.
machineRef - order_by A unique, numeric identifier for the machine.
metricKey - order_by Each metric is globally identified by the combination of machineRef and metricKey.
startAt - order_by The start of an interval.
value - order_by The value observed at the eventTime.
Example
{
  "endAt": "asc",
  "machine": MachineTP_order_by,
  "machineRef": "asc",
  "metricKey": "asc",
  "startAt": "asc",
  "value": "asc"
}

StateIntervalRT_select_column

Values
Enum Value Description

endAt

The end of an interval. Intervals are right-exclusive.

machineRef

A unique, numeric identifier for the machine.

metricKey

Each metric is globally identified by the combination of machineRef and metricKey.

startAt

The start of an interval.

value

The value observed at the eventTime.
Example
"endAt"

String

Example
"xyz789"

String_comparison_exp

Fields
Input Field Description
_eq - String Returns true if the event value is equal to the given value; false otherwise.
_gt - String Returns true if the event value is greater than the given value; false otherwise.
_gte - String Returns true if the event value is greater than the given value; false otherwise.
_ilike - String
_in - [String!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_iregex - String
_is_null - Boolean Checks whether the event value is or is not NULL.
_like - String
_lt - String Returns true if the event value is less than the given value; false otherwise.
_lte - String Returns true if the event value is less than the given value; false otherwise.
_neq - String Returns true if the event value is not equal to the given value; false otherwise.
_nilike - String
_nin - [String!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
_niregex - String
_nlike - String
_nregex - String
_nsimilar - String
_regex - String
_similar - String
Example
{
  "_eq": "xyz789",
  "_gt": "abc123",
  "_gte": "xyz789",
  "_ilike": "xyz789",
  "_in": ["abc123"],
  "_iregex": "abc123",
  "_is_null": false,
  "_like": "abc123",
  "_lt": "xyz789",
  "_lte": "xyz789",
  "_neq": "abc123",
  "_nilike": "xyz789",
  "_nin": ["abc123"],
  "_niregex": "abc123",
  "_nlike": "xyz789",
  "_nregex": "xyz789",
  "_nsimilar": "abc123",
  "_regex": "abc123",
  "_similar": "abc123"
}

aggregatedAlarms_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
bucketWidth - interval
machineRef - Int A unique, numeric identifier for the machine.
machineRefs - String
windowEnd - timestamptz
windowStart - timestamptz
Example
{
  "bucketWidth": "1h",
  "machineRef": 987,
  "machineRefs": "abc123",
  "windowEnd": "2022-05-07T01:08:03.420Z",
  "windowStart": "2022-05-07T01:08:03.420Z"
}

aggregatedPartCounts_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
bucketResolution - Int
bucketWidth - interval
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
windowWidth - interval The with of a time window. Valid values are for example 1h, 5m.
Example
{
  "bucketResolution": 987,
  "bucketWidth": "1h",
  "machineRef": 123,
  "metricKey": "abc123",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z",
  "windowWidth": "1h"
}

aggregatedQuantities_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
bucketResolution - Int
bucketWidth - interval
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
windowWidth - interval The with of a time window. Valid values are for example 1h, 5m.
Example
{
  "bucketResolution": 987,
  "bucketWidth": "1h",
  "machineRef": 123,
  "metricKey": "xyz789",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z",
  "windowWidth": "1h"
}

alarmIntervals_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
Example
{
  "machineRef": 123,
  "metricKey": "xyz789",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z"
}

bigint

Example
982312

bigint_comparison_exp

Fields
Input Field Description
_eq - bigint Returns true if the event value is equal to the given value; false otherwise.
_gt - bigint Returns true if the event value is greater than the given value; false otherwise.
_gte - bigint Returns true if the event value is greater than the given value; false otherwise.
_in - [bigint!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - bigint Returns true if the event value is less than the given value; false otherwise.
_lte - bigint Returns true if the event value is less than the given value; false otherwise.
_neq - bigint Returns true if the event value is not equal to the given value; false otherwise.
_nin - [bigint!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": 982312,
  "_gt": 982312,
  "_gte": 982312,
  "_in": [982312],
  "_is_null": true,
  "_lt": 982312,
  "_lte": 982312,
  "_neq": 982312,
  "_nin": [982312]
}

business_machine_bool_exp

Description

Boolean expressions to filter business_machine. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [business_machine_bool_exp!] Combines the given expressions using a logical AND
_not - business_machine_bool_exp Negates the result of the given expression.
_or - [business_machine_bool_exp!] Combines the given expressions using a logical OR.
activitySets - ActivitySet_bool_exp
annotations - AnnotationTP_bool_exp
company - CompanyTP_bool_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
decommissionedAt - timestamp_comparison_exp
deletedAt - timestamp_comparison_exp
machineId - String_comparison_exp A globally unique identifier (UUID) for the machine.
machineMake - String_comparison_exp
machineModel - String_comparison_exp
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
metrics - MetricTP_bool_exp
name - String_comparison_exp A descriptive, human-readable name
operatorRuns - OperatorRunTP_bool_exp
partCount - String_comparison_exp
partCountCorrections - PartCountCorrection_bool_exp
rejects - Reject_bool_exp
rootMachine - smallint_comparison_exp
Example
{
  "_and": [business_machine_bool_exp],
  "_not": business_machine_bool_exp,
  "_or": [business_machine_bool_exp],
  "activitySets": ActivitySet_bool_exp,
  "annotations": AnnotationTP_bool_exp,
  "company": CompanyTP_bool_exp,
  "companyId": String_comparison_exp,
  "decommissionedAt": timestamp_comparison_exp,
  "deletedAt": timestamp_comparison_exp,
  "machineId": String_comparison_exp,
  "machineMake": String_comparison_exp,
  "machineModel": String_comparison_exp,
  "machineRef": Int_comparison_exp,
  "metrics": MetricTP_bool_exp,
  "name": String_comparison_exp,
  "operatorRuns": OperatorRunTP_bool_exp,
  "partCount": String_comparison_exp,
  "partCountCorrections": PartCountCorrection_bool_exp,
  "rejects": Reject_bool_exp,
  "rootMachine": smallint_comparison_exp
}

business_machine_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotations_aggregate - AnnotationTP_aggregate_order_by
company - CompanyTP_order_by
companyId - order_by A globally unique identifier (UUID) for the company.
decommissionedAt - order_by
deletedAt - order_by
machineId - order_by A globally unique identifier (UUID) for the machine.
machineMake - order_by
machineModel - order_by
machineRef - order_by A unique, numeric identifier for the machine.
metrics_aggregate - MetricTP_aggregate_order_by
name - order_by A descriptive, human-readable name
partCount - order_by
rootMachine - order_by
Example
{
  "annotations_aggregate": AnnotationTP_aggregate_order_by,
  "company": CompanyTP_order_by,
  "companyId": "asc",
  "decommissionedAt": "asc",
  "deletedAt": "asc",
  "machineId": "asc",
  "machineMake": "asc",
  "machineModel": "asc",
  "machineRef": "asc",
  "metrics_aggregate": MetricTP_aggregate_order_by,
  "name": "asc",
  "partCount": "asc",
  "rootMachine": "asc"
}

currentAlarmsByMachine_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
Example
{"machineRef": 987, "metricKey": "abc123"}

currentStatesByMachine_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
Example
{"machineRef": 987, "metricKey": "xyz789"}

cycleTimeStats_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRefs - String
operatorRefs - String
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
Example
{
  "machineRefs": "xyz789",
  "operatorRefs": "xyz789",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z"
}

erpLaborTickets

Fields
Field Name Description
badParts - Float
clockIn - timestamptz
clockOut - timestamptz
comment - String
createdAt - timestamptz!
goodParts - Float
laborTicketId - String A globally unique identifier (UUID) for the laborTicket.
laborTicketRef - bigint! A unique, numeric identifier for the laborTicket.
lot - String
person - erpPersons
personId - String A globally unique identifier (UUID) for the person.
reasons - [erpLaborTicketsReasons!]!
Arguments
distinct_on - [erpLaborTicketsReasons_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpLaborTicketsReasons_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpLaborTicketsReasons_bool_exp

Filter the data by using a (nested) boolean expression.

resource - erpResources
resourceId - String A globally unique identifier (UUID) for the resource.
sequenceNumber - Float
split - String
state - String!
sub - String
syncedAt - timestamptz
transactionDate - timestamptz
type - String The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - timestamptz!
workOrderId - String A globally unique identifier (UUID) for the workOrder.
workOrderOperation - erpWorkOrderOperations Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.
Example
{
  "badParts": 987.65,
  "clockIn": "2022-05-07T01:08:03.420Z",
  "clockOut": "2022-05-07T01:08:03.420Z",
  "comment": "xyz789",
  "createdAt": "2022-05-07T01:08:03.420Z",
  "goodParts": 123.45,
  "laborTicketId": "xyz789",
  "laborTicketRef": 982312,
  "lot": "abc123",
  "person": erpPersons,
  "personId": "xyz789",
  "reasons": [erpLaborTicketsReasons],
  "resource": erpResources,
  "resourceId": "xyz789",
  "sequenceNumber": 123.45,
  "split": "abc123",
  "state": "abc123",
  "sub": "abc123",
  "syncedAt": "2022-05-07T01:08:03.420Z",
  "transactionDate": "2022-05-07T01:08:03.420Z",
  "type": "abc123",
  "updatedAt": "2022-05-07T01:08:03.420Z",
  "workOrderId": "xyz789",
  "workOrderOperation": erpWorkOrderOperations
}

erpLaborTicketsReasons

Fields
Field Name Description
companyId - String A globally unique identifier (UUID) for the company.
laborTicket - erpLaborTickets!
laborTicketRef - bigint! A unique, numeric identifier for the laborTicket.
reason - erpReason
reasonRef - bigint! A unique, numeric identifier for the reason.
Example
{
  "companyId": "abc123",
  "laborTicket": erpLaborTickets,
  "laborTicketRef": 982312,
  "reason": erpReason,
  "reasonRef": 982312
}

erpLaborTicketsReasons_aggregate_order_by

Example
{
  "avg": erpLaborTicketsReasons_avg_order_by,
  "count": "asc",
  "max": erpLaborTicketsReasons_max_order_by,
  "min": erpLaborTicketsReasons_min_order_by,
  "stddev": erpLaborTicketsReasons_stddev_order_by,
  "stddev_pop": erpLaborTicketsReasons_stddev_pop_order_by,
  "stddev_samp": erpLaborTicketsReasons_stddev_samp_order_by,
  "sum": erpLaborTicketsReasons_sum_order_by,
  "var_pop": erpLaborTicketsReasons_var_pop_order_by,
  "var_samp": erpLaborTicketsReasons_var_samp_order_by,
  "variance": erpLaborTicketsReasons_variance_order_by
}

erpLaborTicketsReasons_arr_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - [erpLaborTicketsReasons_insert_input!]! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpLaborTicketsReasons_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": [erpLaborTicketsReasons_insert_input],
  "on_conflict": erpLaborTicketsReasons_on_conflict
}

erpLaborTicketsReasons_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_bool_exp

Description

Boolean expressions to filter erpLaborTicketsReasons. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpLaborTicketsReasons_bool_exp!] Combines the given expressions using a logical AND
_not - erpLaborTicketsReasons_bool_exp Negates the result of the given expression.
_or - [erpLaborTicketsReasons_bool_exp!] Combines the given expressions using a logical OR.
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
laborTicket - erpLaborTickets_bool_exp
laborTicketRef - bigint_comparison_exp A unique, numeric identifier for the laborTicket.
reason - erpReason_bool_exp
reasonRef - bigint_comparison_exp A unique, numeric identifier for the reason.
Example
{
  "_and": [erpLaborTicketsReasons_bool_exp],
  "_not": erpLaborTicketsReasons_bool_exp,
  "_or": [erpLaborTicketsReasons_bool_exp],
  "companyId": String_comparison_exp,
  "laborTicket": erpLaborTickets_bool_exp,
  "laborTicketRef": bigint_comparison_exp,
  "reason": erpReason_bool_exp,
  "reasonRef": bigint_comparison_exp
}

erpLaborTicketsReasons_constraint

Values
Enum Value Description

rel_labor_ticket_reason_pk

Example
"rel_labor_ticket_reason_pk"

erpLaborTicketsReasons_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
laborTicket - erpLaborTickets_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
laborTicketRef - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
reason - erpReason_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
reasonRef - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "laborTicket": erpLaborTickets_obj_rel_insert_input,
  "laborTicketRef": 982312,
  "reason": erpReason_obj_rel_insert_input,
  "reasonRef": 982312
}

erpLaborTicketsReasons_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
companyId - order_by A globally unique identifier (UUID) for the company.
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"companyId": "asc", "laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
companyId - order_by A globally unique identifier (UUID) for the company.
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"companyId": "asc", "laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_on_conflict

Fields
Input Field Description
constraint - erpLaborTicketsReasons_constraint!
update_columns - [erpLaborTicketsReasons_update_column!]!
where - erpLaborTicketsReasons_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "rel_labor_ticket_reason_pk",
  "update_columns": ["laborTicketRef"],
  "where": erpLaborTicketsReasons_bool_exp
}

erpLaborTicketsReasons_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
companyId - order_by A globally unique identifier (UUID) for the company.
laborTicket - erpLaborTickets_order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reason - erpReason_order_by
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{
  "companyId": "asc",
  "laborTicket": erpLaborTickets_order_by,
  "laborTicketRef": "asc",
  "reason": erpReason_order_by,
  "reasonRef": "asc"
}

erpLaborTicketsReasons_select_column

Values
Enum Value Description

companyId

A globally unique identifier (UUID) for the company.

laborTicketRef

A unique, numeric identifier for the laborTicket.

reasonRef

A unique, numeric identifier for the reason.
Example
"companyId"

erpLaborTicketsReasons_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_update_column

Values
Enum Value Description

laborTicketRef

A unique, numeric identifier for the laborTicket.

reasonRef

A unique, numeric identifier for the reason.
Example
"laborTicketRef"

erpLaborTicketsReasons_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTicketsReasons_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
reasonRef - order_by A unique, numeric identifier for the reason.
Example
{"laborTicketRef": "asc", "reasonRef": "asc"}

erpLaborTickets_aggregate_order_by

Description

Sort the returned array by one or more fields of it's elements.

Example
{
  "avg": erpLaborTickets_avg_order_by,
  "count": "asc",
  "max": erpLaborTickets_max_order_by,
  "min": erpLaborTickets_min_order_by,
  "stddev": erpLaborTickets_stddev_order_by,
  "stddev_pop": erpLaborTickets_stddev_pop_order_by,
  "stddev_samp": erpLaborTickets_stddev_samp_order_by,
  "sum": erpLaborTickets_sum_order_by,
  "var_pop": erpLaborTickets_var_pop_order_by,
  "var_samp": erpLaborTickets_var_samp_order_by,
  "variance": erpLaborTickets_variance_order_by
}

erpLaborTickets_arr_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - [erpLaborTickets_insert_input!]! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpLaborTickets_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": [erpLaborTickets_insert_input],
  "on_conflict": erpLaborTickets_on_conflict
}

erpLaborTickets_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpLaborTickets_bool_exp

Description

Boolean expressions to filter erpLaborTickets. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpLaborTickets_bool_exp!] Combines the given expressions using a logical AND
_not - erpLaborTickets_bool_exp Negates the result of the given expression.
_or - [erpLaborTickets_bool_exp!] Combines the given expressions using a logical OR.
badParts - Float_comparison_exp
clockIn - timestamptz_comparison_exp
clockOut - timestamptz_comparison_exp
comment - String_comparison_exp
createdAt - timestamptz_comparison_exp
goodParts - Float_comparison_exp
laborTicketId - String_comparison_exp A globally unique identifier (UUID) for the laborTicket.
laborTicketRef - bigint_comparison_exp A unique, numeric identifier for the laborTicket.
lot - String_comparison_exp
person - erpPersons_bool_exp
personId - String_comparison_exp A globally unique identifier (UUID) for the person.
reasons - erpLaborTicketsReasons_bool_exp
resource - erpResources_bool_exp
resourceId - String_comparison_exp A globally unique identifier (UUID) for the resource.
sequenceNumber - Float_comparison_exp
split - String_comparison_exp
state - String_comparison_exp
sub - String_comparison_exp
syncedAt - timestamptz_comparison_exp
transactionDate - timestamptz_comparison_exp
type - String_comparison_exp The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - timestamptz_comparison_exp
workOrderId - String_comparison_exp A globally unique identifier (UUID) for the workOrder.
workOrderOperation - erpWorkOrderOperations_bool_exp Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.
Example
{
  "_and": [erpLaborTickets_bool_exp],
  "_not": erpLaborTickets_bool_exp,
  "_or": [erpLaborTickets_bool_exp],
  "badParts": Float_comparison_exp,
  "clockIn": timestamptz_comparison_exp,
  "clockOut": timestamptz_comparison_exp,
  "comment": String_comparison_exp,
  "createdAt": timestamptz_comparison_exp,
  "goodParts": Float_comparison_exp,
  "laborTicketId": String_comparison_exp,
  "laborTicketRef": bigint_comparison_exp,
  "lot": String_comparison_exp,
  "person": erpPersons_bool_exp,
  "personId": String_comparison_exp,
  "reasons": erpLaborTicketsReasons_bool_exp,
  "resource": erpResources_bool_exp,
  "resourceId": String_comparison_exp,
  "sequenceNumber": Float_comparison_exp,
  "split": String_comparison_exp,
  "state": String_comparison_exp,
  "sub": String_comparison_exp,
  "syncedAt": timestamptz_comparison_exp,
  "transactionDate": timestamptz_comparison_exp,
  "type": String_comparison_exp,
  "updatedAt": timestamptz_comparison_exp,
  "workOrderId": String_comparison_exp,
  "workOrderOperation": erpWorkOrderOperations_bool_exp
}

erpLaborTickets_constraint

Values
Enum Value Description

labor_ticket_pk

Example
"labor_ticket_pk"

erpLaborTickets_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
badParts - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
clockIn - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
clockOut - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
comment - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
goodParts - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
laborTicketId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
laborTicketRef - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
lot - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
person - erpPersons_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
personId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
reasons - erpLaborTicketsReasons_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resource - erpResources_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
sequenceNumber - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
split - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
state - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
sub - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
syncedAt - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
transactionDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
type - String The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
workOrderId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
workOrderOperation - erpWorkOrderOperations_obj_rel_insert_input Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.
Example
{
  "badParts": 987.65,
  "clockIn": "2022-05-07T01:08:03.420Z",
  "clockOut": "2022-05-07T01:08:03.420Z",
  "comment": "xyz789",
  "goodParts": 123.45,
  "laborTicketId": "abc123",
  "laborTicketRef": 982312,
  "lot": "abc123",
  "person": erpPersons_obj_rel_insert_input,
  "personId": "abc123",
  "reasons": erpLaborTicketsReasons_arr_rel_insert_input,
  "resource": erpResources_obj_rel_insert_input,
  "resourceId": "abc123",
  "sequenceNumber": 987.65,
  "split": "abc123",
  "state": "abc123",
  "sub": "xyz789",
  "syncedAt": "2022-05-07T01:08:03.420Z",
  "transactionDate": "2022-05-07T01:08:03.420Z",
  "type": "xyz789",
  "workOrderId": "abc123",
  "workOrderOperation": erpWorkOrderOperations_obj_rel_insert_input
}

erpLaborTickets_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
clockIn - order_by
clockOut - order_by
comment - order_by
createdAt - order_by
goodParts - order_by
laborTicketId - order_by A globally unique identifier (UUID) for the laborTicket.
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
lot - order_by
personId - order_by A globally unique identifier (UUID) for the person.
resourceId - order_by A globally unique identifier (UUID) for the resource.
sequenceNumber - order_by
split - order_by
state - order_by
sub - order_by
syncedAt - order_by
transactionDate - order_by
type - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
Example
{
  "badParts": "asc",
  "clockIn": "asc",
  "clockOut": "asc",
  "comment": "asc",
  "createdAt": "asc",
  "goodParts": "asc",
  "laborTicketId": "asc",
  "laborTicketRef": "asc",
  "lot": "asc",
  "personId": "asc",
  "resourceId": "asc",
  "sequenceNumber": "asc",
  "split": "asc",
  "state": "asc",
  "sub": "asc",
  "syncedAt": "asc",
  "transactionDate": "asc",
  "type": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc"
}

erpLaborTickets_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
clockIn - order_by
clockOut - order_by
comment - order_by
createdAt - order_by
goodParts - order_by
laborTicketId - order_by A globally unique identifier (UUID) for the laborTicket.
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
lot - order_by
personId - order_by A globally unique identifier (UUID) for the person.
resourceId - order_by A globally unique identifier (UUID) for the resource.
sequenceNumber - order_by
split - order_by
state - order_by
sub - order_by
syncedAt - order_by
transactionDate - order_by
type - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
Example
{
  "badParts": "asc",
  "clockIn": "asc",
  "clockOut": "asc",
  "comment": "asc",
  "createdAt": "asc",
  "goodParts": "asc",
  "laborTicketId": "asc",
  "laborTicketRef": "asc",
  "lot": "asc",
  "personId": "asc",
  "resourceId": "asc",
  "sequenceNumber": "asc",
  "split": "asc",
  "state": "asc",
  "sub": "asc",
  "syncedAt": "asc",
  "transactionDate": "asc",
  "type": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc"
}

erpLaborTickets_obj_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - erpLaborTickets_insert_input! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpLaborTickets_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": erpLaborTickets_insert_input,
  "on_conflict": erpLaborTickets_on_conflict
}

erpLaborTickets_on_conflict

Fields
Input Field Description
constraint - erpLaborTickets_constraint!
update_columns - [erpLaborTickets_update_column!]!
where - erpLaborTickets_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "labor_ticket_pk",
  "update_columns": ["badParts"],
  "where": erpLaborTickets_bool_exp
}

erpLaborTickets_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
clockIn - order_by
clockOut - order_by
comment - order_by
createdAt - order_by
goodParts - order_by
laborTicketId - order_by A globally unique identifier (UUID) for the laborTicket.
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
lot - order_by
person - erpPersons_order_by
personId - order_by A globally unique identifier (UUID) for the person.
reasons_aggregate - erpLaborTicketsReasons_aggregate_order_by
resource - erpResources_order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
sequenceNumber - order_by
split - order_by
state - order_by
sub - order_by
syncedAt - order_by
transactionDate - order_by
type - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
workOrderOperation - erpWorkOrderOperations_order_by Production standards are applied from the Operation selected when starting the first Activity in an Activity Set. This snapshot will not change when standards in the Job Template are updated so an accurate history of the standards as they existed in the moment the work was performed is maintained.
Example
{
  "badParts": "asc",
  "clockIn": "asc",
  "clockOut": "asc",
  "comment": "asc",
  "createdAt": "asc",
  "goodParts": "asc",
  "laborTicketId": "asc",
  "laborTicketRef": "asc",
  "lot": "asc",
  "person": erpPersons_order_by,
  "personId": "asc",
  "reasons_aggregate": erpLaborTicketsReasons_aggregate_order_by,
  "resource": erpResources_order_by,
  "resourceId": "asc",
  "sequenceNumber": "asc",
  "split": "asc",
  "state": "asc",
  "sub": "asc",
  "syncedAt": "asc",
  "transactionDate": "asc",
  "type": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc",
  "workOrderOperation": erpWorkOrderOperations_order_by
}

erpLaborTickets_select_column

Values
Enum Value Description

badParts

clockIn

clockOut

comment

createdAt

goodParts

laborTicketId

A globally unique identifier (UUID) for the laborTicket.

laborTicketRef

A unique, numeric identifier for the laborTicket.

lot

personId

A globally unique identifier (UUID) for the person.

resourceId

A globally unique identifier (UUID) for the resource.

sequenceNumber

split

state

sub

syncedAt

transactionDate

type

The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.

updatedAt

workOrderId

A globally unique identifier (UUID) for the workOrder.
Example
"badParts"

erpLaborTickets_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpLaborTickets_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpLaborTickets_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpLaborTickets_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpLaborTickets_update_column

Values
Enum Value Description

badParts

clockIn

clockOut

comment

goodParts

laborTicketId

A globally unique identifier (UUID) for the laborTicket.

laborTicketRef

A unique, numeric identifier for the laborTicket.

lot

personId

A globally unique identifier (UUID) for the person.

resourceId

A globally unique identifier (UUID) for the resource.

sequenceNumber

split

state

sub

syncedAt

transactionDate

type

The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.

workOrderId

A globally unique identifier (UUID) for the workOrder.
Example
"badParts"

erpLaborTickets_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpLaborTickets_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpLaborTickets_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
badParts - order_by
goodParts - order_by
laborTicketRef - order_by A unique, numeric identifier for the laborTicket.
sequenceNumber - order_by
Example
{
  "badParts": "asc",
  "goodParts": "asc",
  "laborTicketRef": "asc",
  "sequenceNumber": "asc"
}

erpPartOperations

Fields
Field Name Description
companyId - String! A globally unique identifier (UUID) for the company.
createdAt - timestamptz!
cycleTimeMs - Float
description - String
method - String!
part - erpParts
partName - String
partNumber - String!
partOperationRef - bigint! A unique, numeric identifier for the partOperation.
partRevision - String!
quantityPerPart - Float
resource - erpResources
resourceId - String A globally unique identifier (UUID) for the resource.
sequenceNumber - Float!
setupTimeMs - Float
updatedAt - timestamptz!
Example
{
  "companyId": "abc123",
  "createdAt": "2022-05-07T01:08:03.420Z",
  "cycleTimeMs": 123.45,
  "description": "xyz789",
  "method": "abc123",
  "part": erpParts,
  "partName": "abc123",
  "partNumber": "xyz789",
  "partOperationRef": 982312,
  "partRevision": "xyz789",
  "quantityPerPart": 123.45,
  "resource": erpResources,
  "resourceId": "abc123",
  "sequenceNumber": 123.45,
  "setupTimeMs": 987.65,
  "updatedAt": "2022-05-07T01:08:03.420Z"
}

erpPartOperations_aggregate_order_by

Example
{
  "avg": erpPartOperations_avg_order_by,
  "count": "asc",
  "max": erpPartOperations_max_order_by,
  "min": erpPartOperations_min_order_by,
  "stddev": erpPartOperations_stddev_order_by,
  "stddev_pop": erpPartOperations_stddev_pop_order_by,
  "stddev_samp": erpPartOperations_stddev_samp_order_by,
  "sum": erpPartOperations_sum_order_by,
  "var_pop": erpPartOperations_var_pop_order_by,
  "var_samp": erpPartOperations_var_samp_order_by,
  "variance": erpPartOperations_variance_order_by
}

erpPartOperations_arr_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - [erpPartOperations_insert_input!]! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpPartOperations_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": [erpPartOperations_insert_input],
  "on_conflict": erpPartOperations_on_conflict
}

erpPartOperations_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpPartOperations_bool_exp

Description

Boolean expressions to filter erpPartOperations. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpPartOperations_bool_exp!] Combines the given expressions using a logical AND
_not - erpPartOperations_bool_exp Negates the result of the given expression.
_or - [erpPartOperations_bool_exp!] Combines the given expressions using a logical OR.
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
createdAt - timestamptz_comparison_exp
cycleTimeMs - Float_comparison_exp
description - String_comparison_exp
method - String_comparison_exp
part - erpParts_bool_exp
partName - String_comparison_exp
partNumber - String_comparison_exp
partOperationRef - bigint_comparison_exp A unique, numeric identifier for the partOperation.
partRevision - String_comparison_exp
quantityPerPart - Float_comparison_exp
resource - erpResources_bool_exp
resourceId - String_comparison_exp A globally unique identifier (UUID) for the resource.
sequenceNumber - Float_comparison_exp
setupTimeMs - Float_comparison_exp
updatedAt - timestamptz_comparison_exp
Example
{
  "_and": [erpPartOperations_bool_exp],
  "_not": erpPartOperations_bool_exp,
  "_or": [erpPartOperations_bool_exp],
  "companyId": String_comparison_exp,
  "createdAt": timestamptz_comparison_exp,
  "cycleTimeMs": Float_comparison_exp,
  "description": String_comparison_exp,
  "method": String_comparison_exp,
  "part": erpParts_bool_exp,
  "partName": String_comparison_exp,
  "partNumber": String_comparison_exp,
  "partOperationRef": bigint_comparison_exp,
  "partRevision": String_comparison_exp,
  "quantityPerPart": Float_comparison_exp,
  "resource": erpResources_bool_exp,
  "resourceId": String_comparison_exp,
  "sequenceNumber": Float_comparison_exp,
  "setupTimeMs": Float_comparison_exp,
  "updatedAt": timestamptz_comparison_exp
}

erpPartOperations_constraint

Values
Enum Value Description

part_operation_pk

part_operation_uq

Example
"part_operation_pk"

erpPartOperations_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
createdAt - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
cycleTimeMs - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
description - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
method - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
part - erpParts_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partName - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partNumber - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partOperationRef - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partRevision - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
quantityPerPart - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resource - erpResources_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
sequenceNumber - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
setupTimeMs - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
updatedAt - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "createdAt": "2022-05-07T01:08:03.420Z",
  "cycleTimeMs": 123.45,
  "description": "xyz789",
  "method": "xyz789",
  "part": erpParts_obj_rel_insert_input,
  "partName": "abc123",
  "partNumber": "xyz789",
  "partOperationRef": 982312,
  "partRevision": "abc123",
  "quantityPerPart": 987.65,
  "resource": erpResources_obj_rel_insert_input,
  "resourceId": "xyz789",
  "sequenceNumber": 987.65,
  "setupTimeMs": 987.65,
  "updatedAt": "2022-05-07T01:08:03.420Z"
}

erpPartOperations_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
cycleTimeMs - order_by
description - order_by
method - order_by
partName - order_by
partNumber - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
partRevision - order_by
quantityPerPart - order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
sequenceNumber - order_by
setupTimeMs - order_by
updatedAt - order_by
Example
{
  "companyId": "asc",
  "createdAt": "asc",
  "cycleTimeMs": "asc",
  "description": "asc",
  "method": "asc",
  "partName": "asc",
  "partNumber": "asc",
  "partOperationRef": "asc",
  "partRevision": "asc",
  "quantityPerPart": "asc",
  "resourceId": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "updatedAt": "asc"
}

erpPartOperations_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
cycleTimeMs - order_by
description - order_by
method - order_by
partName - order_by
partNumber - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
partRevision - order_by
quantityPerPart - order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
sequenceNumber - order_by
setupTimeMs - order_by
updatedAt - order_by
Example
{
  "companyId": "asc",
  "createdAt": "asc",
  "cycleTimeMs": "asc",
  "description": "asc",
  "method": "asc",
  "partName": "asc",
  "partNumber": "asc",
  "partOperationRef": "asc",
  "partRevision": "asc",
  "quantityPerPart": "asc",
  "resourceId": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "updatedAt": "asc"
}

erpPartOperations_on_conflict

Fields
Input Field Description
constraint - erpPartOperations_constraint!
update_columns - [erpPartOperations_update_column!]!
where - erpPartOperations_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "part_operation_pk",
  "update_columns": ["createdAt"],
  "where": erpPartOperations_bool_exp
}

erpPartOperations_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
cycleTimeMs - order_by
description - order_by
method - order_by
part - erpParts_order_by
partName - order_by
partNumber - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
partRevision - order_by
quantityPerPart - order_by
resource - erpResources_order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
sequenceNumber - order_by
setupTimeMs - order_by
updatedAt - order_by
Example
{
  "companyId": "asc",
  "createdAt": "asc",
  "cycleTimeMs": "asc",
  "description": "asc",
  "method": "asc",
  "part": erpParts_order_by,
  "partName": "asc",
  "partNumber": "asc",
  "partOperationRef": "asc",
  "partRevision": "asc",
  "quantityPerPart": "asc",
  "resource": erpResources_order_by,
  "resourceId": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "updatedAt": "asc"
}

erpPartOperations_select_column

Values
Enum Value Description

companyId

A globally unique identifier (UUID) for the company.

createdAt

cycleTimeMs

description

method

partName

partNumber

partOperationRef

A unique, numeric identifier for the partOperation.

partRevision

quantityPerPart

resourceId

A globally unique identifier (UUID) for the resource.

sequenceNumber

setupTimeMs

updatedAt

Example
"companyId"

erpPartOperations_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpPartOperations_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpPartOperations_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpPartOperations_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpPartOperations_update_column

Values
Enum Value Description

createdAt

cycleTimeMs

description

method

partName

partNumber

partOperationRef

A unique, numeric identifier for the partOperation.

partRevision

quantityPerPart

resourceId

A globally unique identifier (UUID) for the resource.

sequenceNumber

setupTimeMs

updatedAt

Example
"createdAt"

erpPartOperations_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpPartOperations_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpPartOperations_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
partOperationRef - order_by A unique, numeric identifier for the partOperation.
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
Example
{
  "cycleTimeMs": "asc",
  "partOperationRef": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc"
}

erpParts

Fields
Field Name Description
createdAt - timestamptz!
method - String!
partNumber - String!
partOperations - [erpPartOperations!]!
Arguments
distinct_on - [erpPartOperations_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpPartOperations_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpPartOperations_bool_exp

Filter the data by using a (nested) boolean expression.

partRevision - String!
updatedAt - timestamptz!
workOrders - [erpWorkOrder!]!
Arguments
distinct_on - [erpWorkOrder_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpWorkOrder_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpWorkOrder_bool_exp

Filter the data by using a (nested) boolean expression.

Example
{
  "createdAt": "2022-05-07T01:08:03.420Z",
  "method": "xyz789",
  "partNumber": "abc123",
  "partOperations": [erpPartOperations],
  "partRevision": "xyz789",
  "updatedAt": "2022-05-07T01:08:03.420Z",
  "workOrders": [erpWorkOrder]
}

erpParts_bool_exp

Description

Boolean expressions to filter erpParts. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpParts_bool_exp!] Combines the given expressions using a logical AND
_not - erpParts_bool_exp Negates the result of the given expression.
_or - [erpParts_bool_exp!] Combines the given expressions using a logical OR.
createdAt - timestamptz_comparison_exp
method - String_comparison_exp
partNumber - String_comparison_exp
partOperations - erpPartOperations_bool_exp
partRevision - String_comparison_exp
updatedAt - timestamptz_comparison_exp
workOrders - erpWorkOrder_bool_exp
Example
{
  "_and": [erpParts_bool_exp],
  "_not": erpParts_bool_exp,
  "_or": [erpParts_bool_exp],
  "createdAt": timestamptz_comparison_exp,
  "method": String_comparison_exp,
  "partNumber": String_comparison_exp,
  "partOperations": erpPartOperations_bool_exp,
  "partRevision": String_comparison_exp,
  "updatedAt": timestamptz_comparison_exp,
  "workOrders": erpWorkOrder_bool_exp
}

erpParts_constraint

Values
Enum Value Description

part_pk

Example
"part_pk"

erpParts_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
method - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partNumber - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partOperations - erpPartOperations_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partRevision - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
workOrders - erpWorkOrder_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "method": "xyz789",
  "partNumber": "xyz789",
  "partOperations": erpPartOperations_arr_rel_insert_input,
  "partRevision": "xyz789",
  "workOrders": erpWorkOrder_arr_rel_insert_input
}

erpParts_obj_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - erpParts_insert_input! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpParts_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": erpParts_insert_input,
  "on_conflict": erpParts_on_conflict
}

erpParts_on_conflict

Fields
Input Field Description
constraint - erpParts_constraint!
update_columns - [erpParts_update_column!]!
where - erpParts_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "part_pk",
  "update_columns": ["method"],
  "where": erpParts_bool_exp
}

erpParts_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
createdAt - order_by
method - order_by
partNumber - order_by
partOperations_aggregate - erpPartOperations_aggregate_order_by
partRevision - order_by
updatedAt - order_by
workOrders_aggregate - erpWorkOrder_aggregate_order_by
Example
{
  "createdAt": "asc",
  "method": "asc",
  "partNumber": "asc",
  "partOperations_aggregate": erpPartOperations_aggregate_order_by,
  "partRevision": "asc",
  "updatedAt": "asc",
  "workOrders_aggregate": erpWorkOrder_aggregate_order_by
}

erpParts_select_column

Values
Enum Value Description

createdAt

method

partNumber

partRevision

updatedAt

Example
"createdAt"

erpParts_update_column

Values
Enum Value Description

method

partNumber

partRevision

Example
"method"

erpPersons

Fields
Field Name Description
createdAt - timestamptz!
firstName - String
isActive - Boolean!
laborTickets - [erpLaborTickets!]!
Arguments
distinct_on - [erpLaborTickets_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpLaborTickets_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpLaborTickets_bool_exp

Filter the data by using a (nested) boolean expression.

lastName - String
personId - String! A globally unique identifier (UUID) for the person.
updatedAt - timestamptz!
Example
{
  "createdAt": "2022-05-07T01:08:03.420Z",
  "firstName": "abc123",
  "isActive": true,
  "laborTickets": [erpLaborTickets],
  "lastName": "xyz789",
  "personId": "xyz789",
  "updatedAt": "2022-05-07T01:08:03.420Z"
}

erpPersons_bool_exp

Description

Boolean expressions to filter erpPersons. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpPersons_bool_exp!] Combines the given expressions using a logical AND
_not - erpPersons_bool_exp Negates the result of the given expression.
_or - [erpPersons_bool_exp!] Combines the given expressions using a logical OR.
createdAt - timestamptz_comparison_exp
firstName - String_comparison_exp
isActive - Boolean_comparison_exp
laborTickets - erpLaborTickets_bool_exp
lastName - String_comparison_exp
personId - String_comparison_exp A globally unique identifier (UUID) for the person.
updatedAt - timestamptz_comparison_exp
Example
{
  "_and": [erpPersons_bool_exp],
  "_not": erpPersons_bool_exp,
  "_or": [erpPersons_bool_exp],
  "createdAt": timestamptz_comparison_exp,
  "firstName": String_comparison_exp,
  "isActive": Boolean_comparison_exp,
  "laborTickets": erpLaborTickets_bool_exp,
  "lastName": String_comparison_exp,
  "personId": String_comparison_exp,
  "updatedAt": timestamptz_comparison_exp
}

erpPersons_constraint

Values
Enum Value Description

person_pk

Example
"person_pk"

erpPersons_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
firstName - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
isActive - Boolean Returns true if the event value is equal to one of the given values in the collection; false otherwise.
laborTickets - erpLaborTickets_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
lastName - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
personId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "firstName": "abc123",
  "isActive": true,
  "laborTickets": erpLaborTickets_arr_rel_insert_input,
  "lastName": "xyz789",
  "personId": "abc123"
}

erpPersons_obj_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - erpPersons_insert_input! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpPersons_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": erpPersons_insert_input,
  "on_conflict": erpPersons_on_conflict
}

erpPersons_on_conflict

Fields
Input Field Description
constraint - erpPersons_constraint!
update_columns - [erpPersons_update_column!]!
where - erpPersons_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "person_pk",
  "update_columns": ["firstName"],
  "where": erpPersons_bool_exp
}

erpPersons_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
createdAt - order_by
firstName - order_by
isActive - order_by
laborTickets_aggregate - erpLaborTickets_aggregate_order_by
lastName - order_by
personId - order_by A globally unique identifier (UUID) for the person.
updatedAt - order_by
Example
{
  "createdAt": "asc",
  "firstName": "asc",
  "isActive": "asc",
  "laborTickets_aggregate": erpLaborTickets_aggregate_order_by,
  "lastName": "asc",
  "personId": "asc",
  "updatedAt": "asc"
}

erpPersons_select_column

Values
Enum Value Description

createdAt

firstName

isActive

lastName

personId

A globally unique identifier (UUID) for the person.

updatedAt

Example
"createdAt"

erpPersons_update_column

Values
Enum Value Description

firstName

isActive

lastName

personId

A globally unique identifier (UUID) for the person.
Example
"firstName"

erpReason

Fields
Field Name Description
annotationType - AnnotationTypeTP
annotationTypeRef - Int A unique, numeric identifier for the annotationType.
category - String
code - String
companyId - String A globally unique identifier (UUID) for the company.
createdAt - timestamptz!
description - String
entityType - String!
laborTickets - [erpLaborTicketsReasons!]!
Arguments
distinct_on - [erpLaborTicketsReasons_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpLaborTicketsReasons_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpLaborTicketsReasons_bool_exp

Filter the data by using a (nested) boolean expression.

reasonId - String A globally unique identifier (UUID) for the reason.
reasonRef - bigint! A unique, numeric identifier for the reason.
rejectReason - RejectReason
rejectReasonRef - Int A unique, numeric identifier for the rejectReason.
updatedAt - timestamptz!
Example
{
  "annotationType": AnnotationTypeTP,
  "annotationTypeRef": 987,
  "category": "abc123",
  "code": "abc123",
  "companyId": "xyz789",
  "createdAt": "2022-05-07T01:08:03.420Z",
  "description": "xyz789",
  "entityType": "xyz789",
  "laborTickets": [erpLaborTicketsReasons],
  "reasonId": "abc123",
  "reasonRef": 982312,
  "rejectReason": RejectReason,
  "rejectReasonRef": 987,
  "updatedAt": "2022-05-07T01:08:03.420Z"
}

erpReason_bool_exp

Description

Boolean expressions to filter erpReason. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpReason_bool_exp!] Combines the given expressions using a logical AND
_not - erpReason_bool_exp Negates the result of the given expression.
_or - [erpReason_bool_exp!] Combines the given expressions using a logical OR.
annotationTypeRef - Int_comparison_exp A unique, numeric identifier for the annotationType.
category - String_comparison_exp
code - String_comparison_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
createdAt - timestamptz_comparison_exp
description - String_comparison_exp
entityType - String_comparison_exp
laborTickets - erpLaborTicketsReasons_bool_exp
reasonId - String_comparison_exp A globally unique identifier (UUID) for the reason.
reasonRef - bigint_comparison_exp A unique, numeric identifier for the reason.
rejectReasonRef - Int_comparison_exp A unique, numeric identifier for the rejectReason.
updatedAt - timestamptz_comparison_exp
Example
{
  "_and": [erpReason_bool_exp],
  "_not": erpReason_bool_exp,
  "_or": [erpReason_bool_exp],
  "annotationTypeRef": Int_comparison_exp,
  "category": String_comparison_exp,
  "code": String_comparison_exp,
  "companyId": String_comparison_exp,
  "createdAt": timestamptz_comparison_exp,
  "description": String_comparison_exp,
  "entityType": String_comparison_exp,
  "laborTickets": erpLaborTicketsReasons_bool_exp,
  "reasonId": String_comparison_exp,
  "reasonRef": bigint_comparison_exp,
  "rejectReasonRef": Int_comparison_exp,
  "updatedAt": timestamptz_comparison_exp
}

erpReason_constraint

Values
Enum Value Description

reason_pk

reason_uq

Example
"reason_pk"

erpReason_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
annotationTypeRef - Int Returns true if the event value is equal to one of the given values in the collection; false otherwise.
category - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
code - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
description - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
entityType - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
laborTickets - erpLaborTicketsReasons_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
reasonId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
reasonRef - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
rejectReasonRef - Int Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "annotationTypeRef": 123,
  "category": "abc123",
  "code": "xyz789",
  "description": "xyz789",
  "entityType": "xyz789",
  "laborTickets": erpLaborTicketsReasons_arr_rel_insert_input,
  "reasonId": "abc123",
  "reasonRef": 982312,
  "rejectReasonRef": 123
}

erpReason_obj_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - erpReason_insert_input! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpReason_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": erpReason_insert_input,
  "on_conflict": erpReason_on_conflict
}

erpReason_on_conflict

Fields
Input Field Description
constraint - erpReason_constraint!
update_columns - [erpReason_update_column!]!
where - erpReason_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "reason_pk",
  "update_columns": ["annotationTypeRef"],
  "where": erpReason_bool_exp
}

erpReason_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
annotationTypeRef - order_by A unique, numeric identifier for the annotationType.
category - order_by
code - order_by
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
description - order_by
entityType - order_by
laborTickets_aggregate - erpLaborTicketsReasons_aggregate_order_by
reasonId - order_by A globally unique identifier (UUID) for the reason.
reasonRef - order_by A unique, numeric identifier for the reason.
rejectReasonRef - order_by A unique, numeric identifier for the rejectReason.
updatedAt - order_by
Example
{
  "annotationTypeRef": "asc",
  "category": "asc",
  "code": "asc",
  "companyId": "asc",
  "createdAt": "asc",
  "description": "asc",
  "entityType": "asc",
  "laborTickets_aggregate": erpLaborTicketsReasons_aggregate_order_by,
  "reasonId": "asc",
  "reasonRef": "asc",
  "rejectReasonRef": "asc",
  "updatedAt": "asc"
}

erpReason_select_column

Values
Enum Value Description

annotationTypeRef

A unique, numeric identifier for the annotationType.

category

code

companyId

A globally unique identifier (UUID) for the company.

createdAt

description

entityType

reasonId

A globally unique identifier (UUID) for the reason.

reasonRef

A unique, numeric identifier for the reason.

rejectReasonRef

A unique, numeric identifier for the rejectReason.

updatedAt

Example
"annotationTypeRef"

erpReason_update_column

Values
Enum Value Description

annotationTypeRef

A unique, numeric identifier for the annotationType.

category

code

description

entityType

reasonId

A globally unique identifier (UUID) for the reason.

reasonRef

A unique, numeric identifier for the reason.

rejectReasonRef

A unique, numeric identifier for the rejectReason.
Example
"annotationTypeRef"

erpResourceGroupMembersips

Fields
Field Name Description
createdAt - timestamptz!
hasMemberCompanyId - String! A globally unique identifier (UUID) for the hasMemberCompany.
hasMemberResourceId - String! A globally unique identifier (UUID) for the hasMemberResource.
memberOfCompanyId - String! A globally unique identifier (UUID) for the memberOfCompany.
memberOfResourceId - String! A globally unique identifier (UUID) for the memberOfResource.
resourceGroup - erpResources
resourceGroupMember - erpResources
updatedAt - timestamptz!
Example
{
  "createdAt": "2022-05-07T01:08:03.420Z",
  "hasMemberCompanyId": "xyz789",
  "hasMemberResourceId": "abc123",
  "memberOfCompanyId": "xyz789",
  "memberOfResourceId": "abc123",
  "resourceGroup": erpResources,
  "resourceGroupMember": erpResources,
  "updatedAt": "2022-05-07T01:08:03.420Z"
}

erpResourceGroupMembersips_aggregate_order_by

Description

Sort the returned array by one or more fields of it's elements.

Example
{
  "count": "asc",
  "max": erpResourceGroupMembersips_max_order_by,
  "min": erpResourceGroupMembersips_min_order_by
}

erpResourceGroupMembersips_arr_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - [erpResourceGroupMembersips_insert_input!]! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpResourceGroupMembersips_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": [erpResourceGroupMembersips_insert_input],
  "on_conflict": erpResourceGroupMembersips_on_conflict
}

erpResourceGroupMembersips_bool_exp

Description

Boolean expressions to filter erpResourceGroupMembersips. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpResourceGroupMembersips_bool_exp!] Combines the given expressions using a logical AND
_not - erpResourceGroupMembersips_bool_exp Negates the result of the given expression.
_or - [erpResourceGroupMembersips_bool_exp!] Combines the given expressions using a logical OR.
createdAt - timestamptz_comparison_exp
hasMemberCompanyId - String_comparison_exp A globally unique identifier (UUID) for the hasMemberCompany.
hasMemberResourceId - String_comparison_exp A globally unique identifier (UUID) for the hasMemberResource.
memberOfCompanyId - String_comparison_exp A globally unique identifier (UUID) for the memberOfCompany.
memberOfResourceId - String_comparison_exp A globally unique identifier (UUID) for the memberOfResource.
resourceGroup - erpResources_bool_exp
resourceGroupMember - erpResources_bool_exp
updatedAt - timestamptz_comparison_exp
Example
{
  "_and": [erpResourceGroupMembersips_bool_exp],
  "_not": erpResourceGroupMembersips_bool_exp,
  "_or": [erpResourceGroupMembersips_bool_exp],
  "createdAt": timestamptz_comparison_exp,
  "hasMemberCompanyId": String_comparison_exp,
  "hasMemberResourceId": String_comparison_exp,
  "memberOfCompanyId": String_comparison_exp,
  "memberOfResourceId": String_comparison_exp,
  "resourceGroup": erpResources_bool_exp,
  "resourceGroupMember": erpResources_bool_exp,
  "updatedAt": timestamptz_comparison_exp
}

erpResourceGroupMembersips_constraint

Values
Enum Value Description

resource_group_membership_pk

Example
"resource_group_membership_pk"

erpResourceGroupMembersips_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
hasMemberResourceId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
memberOfResourceId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceGroup - erpResources_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceGroupMember - erpResources_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "hasMemberResourceId": "xyz789",
  "memberOfResourceId": "abc123",
  "resourceGroup": erpResources_obj_rel_insert_input,
  "resourceGroupMember": erpResources_obj_rel_insert_input
}

erpResourceGroupMembersips_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
createdAt - order_by
hasMemberCompanyId - order_by A globally unique identifier (UUID) for the hasMemberCompany.
hasMemberResourceId - order_by A globally unique identifier (UUID) for the hasMemberResource.
memberOfCompanyId - order_by A globally unique identifier (UUID) for the memberOfCompany.
memberOfResourceId - order_by A globally unique identifier (UUID) for the memberOfResource.
updatedAt - order_by
Example
{
  "createdAt": "asc",
  "hasMemberCompanyId": "asc",
  "hasMemberResourceId": "asc",
  "memberOfCompanyId": "asc",
  "memberOfResourceId": "asc",
  "updatedAt": "asc"
}

erpResourceGroupMembersips_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
createdAt - order_by
hasMemberCompanyId - order_by A globally unique identifier (UUID) for the hasMemberCompany.
hasMemberResourceId - order_by A globally unique identifier (UUID) for the hasMemberResource.
memberOfCompanyId - order_by A globally unique identifier (UUID) for the memberOfCompany.
memberOfResourceId - order_by A globally unique identifier (UUID) for the memberOfResource.
updatedAt - order_by
Example
{
  "createdAt": "asc",
  "hasMemberCompanyId": "asc",
  "hasMemberResourceId": "asc",
  "memberOfCompanyId": "asc",
  "memberOfResourceId": "asc",
  "updatedAt": "asc"
}

erpResourceGroupMembersips_on_conflict

Fields
Input Field Description
constraint - erpResourceGroupMembersips_constraint!
update_columns - [erpResourceGroupMembersips_update_column!]!
where - erpResourceGroupMembersips_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "resource_group_membership_pk",
  "update_columns": ["hasMemberResourceId"],
  "where": erpResourceGroupMembersips_bool_exp
}

erpResourceGroupMembersips_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
createdAt - order_by
hasMemberCompanyId - order_by A globally unique identifier (UUID) for the hasMemberCompany.
hasMemberResourceId - order_by A globally unique identifier (UUID) for the hasMemberResource.
memberOfCompanyId - order_by A globally unique identifier (UUID) for the memberOfCompany.
memberOfResourceId - order_by A globally unique identifier (UUID) for the memberOfResource.
resourceGroup - erpResources_order_by
resourceGroupMember - erpResources_order_by
updatedAt - order_by
Example
{
  "createdAt": "asc",
  "hasMemberCompanyId": "asc",
  "hasMemberResourceId": "asc",
  "memberOfCompanyId": "asc",
  "memberOfResourceId": "asc",
  "resourceGroup": erpResources_order_by,
  "resourceGroupMember": erpResources_order_by,
  "updatedAt": "asc"
}

erpResourceGroupMembersips_select_column

Values
Enum Value Description

createdAt

hasMemberCompanyId

A globally unique identifier (UUID) for the hasMemberCompany.

hasMemberResourceId

A globally unique identifier (UUID) for the hasMemberResource.

memberOfCompanyId

A globally unique identifier (UUID) for the memberOfCompany.

memberOfResourceId

A globally unique identifier (UUID) for the memberOfResource.

updatedAt

Example
"createdAt"

erpResourceGroupMembersips_update_column

Values
Enum Value Description

hasMemberResourceId

A globally unique identifier (UUID) for the hasMemberResource.

memberOfResourceId

A globally unique identifier (UUID) for the memberOfResource.
Example
"hasMemberResourceId"

erpResources

Fields
Field Name Description
createdAt - timestamptz!
description - String
isResourceGroup - Boolean
laborTickets - [erpLaborTickets!]!
Arguments
distinct_on - [erpLaborTickets_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpLaborTickets_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpLaborTickets_bool_exp

Filter the data by using a (nested) boolean expression.

machineGroupId - String A globally unique identifier (UUID) for the machineGroup.
machineRef - Int A unique, numeric identifier for the machine.
name - String A descriptive, human-readable name
partOperations - [erpPartOperations!]!
Arguments
distinct_on - [erpPartOperations_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpPartOperations_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpPartOperations_bool_exp

Filter the data by using a (nested) boolean expression.

productionBurdenRateHourly - Float
resourceGroupMembers - [erpResourceGroupMembersips!]!
Arguments
distinct_on - [erpResourceGroupMembersips_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpResourceGroupMembersips_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpResourceGroupMembersips_bool_exp

Filter the data by using a (nested) boolean expression.

resourceGroups - [erpResourceGroupMembersips!]!
Arguments
distinct_on - [erpResourceGroupMembersips_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpResourceGroupMembersips_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpResourceGroupMembersips_bool_exp

Filter the data by using a (nested) boolean expression.

resourceId - String! A globally unique identifier (UUID) for the resource.
setupBurdenRateHourly - Float
type - String The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - timestamptz!
workOrderOperations - [erpWorkOrderOperations!]!
Arguments
distinct_on - [erpWorkOrderOperations_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpWorkOrderOperations_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpWorkOrderOperations_bool_exp

Filter the data by using a (nested) boolean expression.

Example
{
  "createdAt": "2022-05-07T01:08:03.420Z",
  "description": "abc123",
  "isResourceGroup": false,
  "laborTickets": [erpLaborTickets],
  "machineGroupId": "abc123",
  "machineRef": 123,
  "name": "xyz789",
  "partOperations": [erpPartOperations],
  "productionBurdenRateHourly": 987.65,
  "resourceGroupMembers": [erpResourceGroupMembersips],
  "resourceGroups": [erpResourceGroupMembersips],
  "resourceId": "xyz789",
  "setupBurdenRateHourly": 123.45,
  "type": "abc123",
  "updatedAt": "2022-05-07T01:08:03.420Z",
  "workOrderOperations": [erpWorkOrderOperations]
}

erpResources_bool_exp

Description

Boolean expressions to filter erpResources. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpResources_bool_exp!] Combines the given expressions using a logical AND
_not - erpResources_bool_exp Negates the result of the given expression.
_or - [erpResources_bool_exp!] Combines the given expressions using a logical OR.
createdAt - timestamptz_comparison_exp
description - String_comparison_exp
isResourceGroup - Boolean_comparison_exp
laborTickets - erpLaborTickets_bool_exp
machineGroupId - String_comparison_exp A globally unique identifier (UUID) for the machineGroup.
machineRef - Int_comparison_exp A unique, numeric identifier for the machine.
name - String_comparison_exp A descriptive, human-readable name
partOperations - erpPartOperations_bool_exp
productionBurdenRateHourly - Float_comparison_exp
resourceGroupMembers - erpResourceGroupMembersips_bool_exp
resourceGroups - erpResourceGroupMembersips_bool_exp
resourceId - String_comparison_exp A globally unique identifier (UUID) for the resource.
setupBurdenRateHourly - Float_comparison_exp
type - String_comparison_exp The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - timestamptz_comparison_exp
workOrderOperations - erpWorkOrderOperations_bool_exp
Example
{
  "_and": [erpResources_bool_exp],
  "_not": erpResources_bool_exp,
  "_or": [erpResources_bool_exp],
  "createdAt": timestamptz_comparison_exp,
  "description": String_comparison_exp,
  "isResourceGroup": Boolean_comparison_exp,
  "laborTickets": erpLaborTickets_bool_exp,
  "machineGroupId": String_comparison_exp,
  "machineRef": Int_comparison_exp,
  "name": String_comparison_exp,
  "partOperations": erpPartOperations_bool_exp,
  "productionBurdenRateHourly": Float_comparison_exp,
  "resourceGroupMembers": erpResourceGroupMembersips_bool_exp,
  "resourceGroups": erpResourceGroupMembersips_bool_exp,
  "resourceId": String_comparison_exp,
  "setupBurdenRateHourly": Float_comparison_exp,
  "type": String_comparison_exp,
  "updatedAt": timestamptz_comparison_exp,
  "workOrderOperations": erpWorkOrderOperations_bool_exp
}

erpResources_constraint

Values
Enum Value Description

resource_pk

Example
"resource_pk"

erpResources_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
description - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
isResourceGroup - Boolean Returns true if the event value is equal to one of the given values in the collection; false otherwise.
laborTickets - erpLaborTickets_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
machineGroupId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
machineRef - Int Returns true if the event value is equal to one of the given values in the collection; false otherwise.
name - String A descriptive, human-readable name
partOperations - erpPartOperations_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
productionBurdenRateHourly - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceGroupMembers - erpResourceGroupMembersips_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceGroups - erpResourceGroupMembersips_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
setupBurdenRateHourly - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
type - String The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
workOrderOperations - erpWorkOrderOperations_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "description": "xyz789",
  "isResourceGroup": false,
  "laborTickets": erpLaborTickets_arr_rel_insert_input,
  "machineGroupId": "abc123",
  "machineRef": 987,
  "name": "abc123",
  "partOperations": erpPartOperations_arr_rel_insert_input,
  "productionBurdenRateHourly": 123.45,
  "resourceGroupMembers": erpResourceGroupMembersips_arr_rel_insert_input,
  "resourceGroups": erpResourceGroupMembersips_arr_rel_insert_input,
  "resourceId": "xyz789",
  "setupBurdenRateHourly": 987.65,
  "type": "xyz789",
  "workOrderOperations": erpWorkOrderOperations_arr_rel_insert_input
}

erpResources_obj_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - erpResources_insert_input! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpResources_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": erpResources_insert_input,
  "on_conflict": erpResources_on_conflict
}

erpResources_on_conflict

Fields
Input Field Description
constraint - erpResources_constraint!
update_columns - [erpResources_update_column!]!
where - erpResources_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "resource_pk",
  "update_columns": ["description"],
  "where": erpResources_bool_exp
}

erpResources_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
createdAt - order_by
description - order_by
isResourceGroup - order_by
laborTickets_aggregate - erpLaborTickets_aggregate_order_by
machineGroupId - order_by A globally unique identifier (UUID) for the machineGroup.
machineRef - order_by A unique, numeric identifier for the machine.
name - order_by A descriptive, human-readable name
partOperations_aggregate - erpPartOperations_aggregate_order_by
productionBurdenRateHourly - order_by
resourceGroupMembers_aggregate - erpResourceGroupMembersips_aggregate_order_by
resourceGroups_aggregate - erpResourceGroupMembersips_aggregate_order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
setupBurdenRateHourly - order_by
type - order_by The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
updatedAt - order_by
workOrderOperations_aggregate - erpWorkOrderOperations_aggregate_order_by
Example
{
  "createdAt": "asc",
  "description": "asc",
  "isResourceGroup": "asc",
  "laborTickets_aggregate": erpLaborTickets_aggregate_order_by,
  "machineGroupId": "asc",
  "machineRef": "asc",
  "name": "asc",
  "partOperations_aggregate": erpPartOperations_aggregate_order_by,
  "productionBurdenRateHourly": "asc",
  "resourceGroupMembers_aggregate": erpResourceGroupMembersips_aggregate_order_by,
  "resourceGroups_aggregate": erpResourceGroupMembersips_aggregate_order_by,
  "resourceId": "asc",
  "setupBurdenRateHourly": "asc",
  "type": "asc",
  "updatedAt": "asc",
  "workOrderOperations_aggregate": erpWorkOrderOperations_aggregate_order_by
}

erpResources_select_column

Values
Enum Value Description

createdAt

description

isResourceGroup

machineGroupId

A globally unique identifier (UUID) for the machineGroup.

machineRef

A unique, numeric identifier for the machine.

name

A descriptive, human-readable name

productionBurdenRateHourly

resourceId

A globally unique identifier (UUID) for the resource.

setupBurdenRateHourly

type

The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.

updatedAt

Example
"createdAt"

erpResources_update_column

Values
Enum Value Description

description

isResourceGroup

machineGroupId

A globally unique identifier (UUID) for the machineGroup.

machineRef

A unique, numeric identifier for the machine.

name

A descriptive, human-readable name

productionBurdenRateHourly

resourceId

A globally unique identifier (UUID) for the resource.

setupBurdenRateHourly

type

The type of a metric as defined in the data mapping section of the machine's edit form. See the data catalog for more information.
Example
"description"

erpWorkOrder

Fields
Field Name Description
closedDate - timestamptz
companyId - String! A globally unique identifier (UUID) for the company.
createdAt - timestamptz!
description - String
dueDate - timestamptz
lot - String!
method - String!
part - erpParts
partNumber - String!
partRevision - String!
quantityRequired - Float
scheduledEndDate - timestamptz
scheduledStartDate - timestamptz
split - String!
status - String
sub - String!
updatedAt - timestamptz!
workOrderId - String! A globally unique identifier (UUID) for the workOrder.
workOrderOperations - [erpWorkOrderOperations!]!
Arguments
distinct_on - [erpWorkOrderOperations_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpWorkOrderOperations_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpWorkOrderOperations_bool_exp

Filter the data by using a (nested) boolean expression.

Example
{
  "closedDate": "2022-05-07T01:08:03.420Z",
  "companyId": "xyz789",
  "createdAt": "2022-05-07T01:08:03.420Z",
  "description": "xyz789",
  "dueDate": "2022-05-07T01:08:03.420Z",
  "lot": "xyz789",
  "method": "abc123",
  "part": erpParts,
  "partNumber": "xyz789",
  "partRevision": "abc123",
  "quantityRequired": 123.45,
  "scheduledEndDate": "2022-05-07T01:08:03.420Z",
  "scheduledStartDate": "2022-05-07T01:08:03.420Z",
  "split": "abc123",
  "status": "xyz789",
  "sub": "xyz789",
  "updatedAt": "2022-05-07T01:08:03.420Z",
  "workOrderId": "xyz789",
  "workOrderOperations": [erpWorkOrderOperations]
}

erpWorkOrderOperations

Fields
Field Name Description
activitySet - ActivitySet
closedDate - timestamptz
companyId - String A globally unique identifier (UUID) for the company.
createdAt - timestamptz!
cycleTimeMs - bigint
expectedRejectRate - Float
finishQuantity - Float
laborTickets - [erpLaborTickets!]!
Arguments
distinct_on - [erpLaborTickets_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpLaborTickets_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpLaborTickets_bool_exp

Filter the data by using a (nested) boolean expression.

lot - String
matchingPartOperations - [erpPartOperations!]
Arguments
distinct_on - [erpPartOperations_select_column!]

Return a distinct set of entities, defined by the given fields.

limit - Int

Limits the number of objects returned.

offset - Int

Start a the specified, zero-based array index. This is only useful in combination with order_by.

order_by - [erpPartOperations_order_by!]

Sort the returned array by one or more fields of it's elements.

where - erpPartOperations_bool_exp

Filter the data by using a (nested) boolean expression.

operationType - String
productionburdenRateHourly - Float
quantityPerPart - bigint
resource - erpResources
resourceId - String A globally unique identifier (UUID) for the resource.
scheduledFinishDate - timestamptz
scheduledStartDate - timestamptz
sequenceNumber - Float
setupTimeMs - bigint
setupburdenRatehourly - Float
split - String
startQuantity - Float
status - String
sub - String
updatedAt - timestamptz!
workOrder - erpWorkOrder
workOrderId - String A globally unique identifier (UUID) for the workOrder.
workOrderOperationRef - bigint! A unique, numeric identifier for the workOrderOperation.
Example
{
  "activitySet": ActivitySet,
  "closedDate": "2022-05-07T01:08:03.420Z",
  "companyId": "xyz789",
  "createdAt": "2022-05-07T01:08:03.420Z",
  "cycleTimeMs": 982312,
  "expectedRejectRate": 987.65,
  "finishQuantity": 123.45,
  "laborTickets": [erpLaborTickets],
  "lot": "xyz789",
  "matchingPartOperations": [erpPartOperations],
  "operationType": "abc123",
  "productionburdenRateHourly": 123.45,
  "quantityPerPart": 982312,
  "resource": erpResources,
  "resourceId": "abc123",
  "scheduledFinishDate": "2022-05-07T01:08:03.420Z",
  "scheduledStartDate": "2022-05-07T01:08:03.420Z",
  "sequenceNumber": 987.65,
  "setupTimeMs": 982312,
  "setupburdenRatehourly": 123.45,
  "split": "abc123",
  "startQuantity": 123.45,
  "status": "xyz789",
  "sub": "xyz789",
  "updatedAt": "2022-05-07T01:08:03.420Z",
  "workOrder": erpWorkOrder,
  "workOrderId": "xyz789",
  "workOrderOperationRef": 982312
}

erpWorkOrderOperations_aggregate_order_by

Example
{
  "avg": erpWorkOrderOperations_avg_order_by,
  "count": "asc",
  "max": erpWorkOrderOperations_max_order_by,
  "min": erpWorkOrderOperations_min_order_by,
  "stddev": erpWorkOrderOperations_stddev_order_by,
  "stddev_pop": erpWorkOrderOperations_stddev_pop_order_by,
  "stddev_samp": erpWorkOrderOperations_stddev_samp_order_by,
  "sum": erpWorkOrderOperations_sum_order_by,
  "var_pop": erpWorkOrderOperations_var_pop_order_by,
  "var_samp": erpWorkOrderOperations_var_samp_order_by,
  "variance": erpWorkOrderOperations_variance_order_by
}

erpWorkOrderOperations_arr_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - [erpWorkOrderOperations_insert_input!]! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpWorkOrderOperations_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": [erpWorkOrderOperations_insert_input],
  "on_conflict": erpWorkOrderOperations_on_conflict
}

erpWorkOrderOperations_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_bool_exp

Description

Boolean expressions to filter erpWorkOrderOperations. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpWorkOrderOperations_bool_exp!] Combines the given expressions using a logical AND
_not - erpWorkOrderOperations_bool_exp Negates the result of the given expression.
_or - [erpWorkOrderOperations_bool_exp!] Combines the given expressions using a logical OR.
closedDate - timestamptz_comparison_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
createdAt - timestamptz_comparison_exp
cycleTimeMs - bigint_comparison_exp
expectedRejectRate - Float_comparison_exp
finishQuantity - Float_comparison_exp
laborTickets - erpLaborTickets_bool_exp
lot - String_comparison_exp
matchingPartOperations - erpPartOperations_bool_exp
operationType - String_comparison_exp
productionburdenRateHourly - Float_comparison_exp
quantityPerPart - bigint_comparison_exp
resource - erpResources_bool_exp
resourceId - String_comparison_exp A globally unique identifier (UUID) for the resource.
scheduledFinishDate - timestamptz_comparison_exp
scheduledStartDate - timestamptz_comparison_exp
sequenceNumber - Float_comparison_exp
setupTimeMs - bigint_comparison_exp
setupburdenRatehourly - Float_comparison_exp
split - String_comparison_exp
startQuantity - Float_comparison_exp
status - String_comparison_exp
sub - String_comparison_exp
updatedAt - timestamptz_comparison_exp
workOrder - erpWorkOrder_bool_exp
workOrderId - String_comparison_exp A globally unique identifier (UUID) for the workOrder.
workOrderOperationRef - bigint_comparison_exp A unique, numeric identifier for the workOrderOperation.
Example
{
  "_and": [erpWorkOrderOperations_bool_exp],
  "_not": erpWorkOrderOperations_bool_exp,
  "_or": [erpWorkOrderOperations_bool_exp],
  "closedDate": timestamptz_comparison_exp,
  "companyId": String_comparison_exp,
  "createdAt": timestamptz_comparison_exp,
  "cycleTimeMs": bigint_comparison_exp,
  "expectedRejectRate": Float_comparison_exp,
  "finishQuantity": Float_comparison_exp,
  "laborTickets": erpLaborTickets_bool_exp,
  "lot": String_comparison_exp,
  "matchingPartOperations": erpPartOperations_bool_exp,
  "operationType": String_comparison_exp,
  "productionburdenRateHourly": Float_comparison_exp,
  "quantityPerPart": bigint_comparison_exp,
  "resource": erpResources_bool_exp,
  "resourceId": String_comparison_exp,
  "scheduledFinishDate": timestamptz_comparison_exp,
  "scheduledStartDate": timestamptz_comparison_exp,
  "sequenceNumber": Float_comparison_exp,
  "setupTimeMs": bigint_comparison_exp,
  "setupburdenRatehourly": Float_comparison_exp,
  "split": String_comparison_exp,
  "startQuantity": Float_comparison_exp,
  "status": String_comparison_exp,
  "sub": String_comparison_exp,
  "updatedAt": timestamptz_comparison_exp,
  "workOrder": erpWorkOrder_bool_exp,
  "workOrderId": String_comparison_exp,
  "workOrderOperationRef": bigint_comparison_exp
}

erpWorkOrderOperations_constraint

Values
Enum Value Description

work_order_operation_pk

work_order_operation_uq

Example
"work_order_operation_pk"

erpWorkOrderOperations_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
closedDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
cycleTimeMs - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
expectedRejectRate - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
finishQuantity - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
laborTickets - erpLaborTickets_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
lot - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
operationType - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
productionburdenRateHourly - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
quantityPerPart - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resource - erpResources_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
resourceId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
scheduledFinishDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
scheduledStartDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
sequenceNumber - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
setupTimeMs - bigint Returns true if the event value is equal to one of the given values in the collection; false otherwise.
setupburdenRatehourly - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
split - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
startQuantity - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
status - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
sub - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
workOrder - erpWorkOrder_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
workOrderId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "closedDate": "2022-05-07T01:08:03.420Z",
  "cycleTimeMs": 982312,
  "expectedRejectRate": 123.45,
  "finishQuantity": 987.65,
  "laborTickets": erpLaborTickets_arr_rel_insert_input,
  "lot": "abc123",
  "operationType": "abc123",
  "productionburdenRateHourly": 987.65,
  "quantityPerPart": 982312,
  "resource": erpResources_obj_rel_insert_input,
  "resourceId": "xyz789",
  "scheduledFinishDate": "2022-05-07T01:08:03.420Z",
  "scheduledStartDate": "2022-05-07T01:08:03.420Z",
  "sequenceNumber": 987.65,
  "setupTimeMs": 982312,
  "setupburdenRatehourly": 987.65,
  "split": "abc123",
  "startQuantity": 123.45,
  "status": "abc123",
  "sub": "abc123",
  "workOrder": erpWorkOrder_obj_rel_insert_input,
  "workOrderId": "abc123"
}

erpWorkOrderOperations_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
closedDate - order_by
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
lot - order_by
operationType - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
scheduledFinishDate - order_by
scheduledStartDate - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
split - order_by
startQuantity - order_by
status - order_by
sub - order_by
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "closedDate": "asc",
  "companyId": "asc",
  "createdAt": "asc",
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "lot": "asc",
  "operationType": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "resourceId": "asc",
  "scheduledFinishDate": "asc",
  "scheduledStartDate": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "split": "asc",
  "startQuantity": "asc",
  "status": "asc",
  "sub": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
closedDate - order_by
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
lot - order_by
operationType - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
scheduledFinishDate - order_by
scheduledStartDate - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
split - order_by
startQuantity - order_by
status - order_by
sub - order_by
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "closedDate": "asc",
  "companyId": "asc",
  "createdAt": "asc",
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "lot": "asc",
  "operationType": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "resourceId": "asc",
  "scheduledFinishDate": "asc",
  "scheduledStartDate": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "split": "asc",
  "startQuantity": "asc",
  "status": "asc",
  "sub": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_obj_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - erpWorkOrderOperations_insert_input! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpWorkOrderOperations_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": erpWorkOrderOperations_insert_input,
  "on_conflict": erpWorkOrderOperations_on_conflict
}

erpWorkOrderOperations_on_conflict

Fields
Input Field Description
constraint - erpWorkOrderOperations_constraint!
update_columns - [erpWorkOrderOperations_update_column!]!
where - erpWorkOrderOperations_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "work_order_operation_pk",
  "update_columns": ["closedDate"],
  "where": erpWorkOrderOperations_bool_exp
}

erpWorkOrderOperations_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
closedDate - order_by
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
laborTickets_aggregate - erpLaborTickets_aggregate_order_by
lot - order_by
matchingPartOperations_aggregate - erpPartOperations_aggregate_order_by
operationType - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
resource - erpResources_order_by
resourceId - order_by A globally unique identifier (UUID) for the resource.
scheduledFinishDate - order_by
scheduledStartDate - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
split - order_by
startQuantity - order_by
status - order_by
sub - order_by
updatedAt - order_by
workOrder - erpWorkOrder_order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "closedDate": "asc",
  "companyId": "asc",
  "createdAt": "asc",
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "laborTickets_aggregate": erpLaborTickets_aggregate_order_by,
  "lot": "asc",
  "matchingPartOperations_aggregate": erpPartOperations_aggregate_order_by,
  "operationType": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "resource": erpResources_order_by,
  "resourceId": "asc",
  "scheduledFinishDate": "asc",
  "scheduledStartDate": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "split": "asc",
  "startQuantity": "asc",
  "status": "asc",
  "sub": "asc",
  "updatedAt": "asc",
  "workOrder": erpWorkOrder_order_by,
  "workOrderId": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_select_column

Values
Enum Value Description

closedDate

companyId

A globally unique identifier (UUID) for the company.

createdAt

cycleTimeMs

expectedRejectRate

finishQuantity

lot

operationType

productionburdenRateHourly

quantityPerPart

resourceId

A globally unique identifier (UUID) for the resource.

scheduledFinishDate

scheduledStartDate

sequenceNumber

setupTimeMs

setupburdenRatehourly

split

startQuantity

status

sub

updatedAt

workOrderId

A globally unique identifier (UUID) for the workOrder.

workOrderOperationRef

A unique, numeric identifier for the workOrderOperation.
Example
"closedDate"

erpWorkOrderOperations_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_update_column

Values
Enum Value Description

closedDate

cycleTimeMs

expectedRejectRate

finishQuantity

lot

operationType

productionburdenRateHourly

quantityPerPart

resourceId

A globally unique identifier (UUID) for the resource.

scheduledFinishDate

scheduledStartDate

sequenceNumber

setupTimeMs

setupburdenRatehourly

split

startQuantity

status

sub

workOrderId

A globally unique identifier (UUID) for the workOrder.
Example
"closedDate"

erpWorkOrderOperations_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrderOperations_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
cycleTimeMs - order_by
expectedRejectRate - order_by
finishQuantity - order_by
productionburdenRateHourly - order_by
quantityPerPart - order_by
sequenceNumber - order_by
setupTimeMs - order_by
setupburdenRatehourly - order_by
startQuantity - order_by
workOrderOperationRef - order_by A unique, numeric identifier for the workOrderOperation.
Example
{
  "cycleTimeMs": "asc",
  "expectedRejectRate": "asc",
  "finishQuantity": "asc",
  "productionburdenRateHourly": "asc",
  "quantityPerPart": "asc",
  "sequenceNumber": "asc",
  "setupTimeMs": "asc",
  "setupburdenRatehourly": "asc",
  "startQuantity": "asc",
  "workOrderOperationRef": "asc"
}

erpWorkOrder_aggregate_order_by

Description

Sort the returned array by one or more fields of it's elements.

Example
{
  "avg": erpWorkOrder_avg_order_by,
  "count": "asc",
  "max": erpWorkOrder_max_order_by,
  "min": erpWorkOrder_min_order_by,
  "stddev": erpWorkOrder_stddev_order_by,
  "stddev_pop": erpWorkOrder_stddev_pop_order_by,
  "stddev_samp": erpWorkOrder_stddev_samp_order_by,
  "sum": erpWorkOrder_sum_order_by,
  "var_pop": erpWorkOrder_var_pop_order_by,
  "var_samp": erpWorkOrder_var_samp_order_by,
  "variance": erpWorkOrder_variance_order_by
}

erpWorkOrder_arr_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - [erpWorkOrder_insert_input!]! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpWorkOrder_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": [erpWorkOrder_insert_input],
  "on_conflict": erpWorkOrder_on_conflict
}

erpWorkOrder_avg_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

erpWorkOrder_bool_exp

Description

Boolean expressions to filter erpWorkOrder. All fields are combined with a logical AND.

Fields
Input Field Description
_and - [erpWorkOrder_bool_exp!] Combines the given expressions using a logical AND
_not - erpWorkOrder_bool_exp Negates the result of the given expression.
_or - [erpWorkOrder_bool_exp!] Combines the given expressions using a logical OR.
closedDate - timestamptz_comparison_exp
companyId - String_comparison_exp A globally unique identifier (UUID) for the company.
createdAt - timestamptz_comparison_exp
description - String_comparison_exp
dueDate - timestamptz_comparison_exp
lot - String_comparison_exp
method - String_comparison_exp
part - erpParts_bool_exp
partNumber - String_comparison_exp
partRevision - String_comparison_exp
quantityRequired - Float_comparison_exp
scheduledEndDate - timestamptz_comparison_exp
scheduledStartDate - timestamptz_comparison_exp
split - String_comparison_exp
status - String_comparison_exp
sub - String_comparison_exp
updatedAt - timestamptz_comparison_exp
workOrderId - String_comparison_exp A globally unique identifier (UUID) for the workOrder.
workOrderOperations - erpWorkOrderOperations_bool_exp
Example
{
  "_and": [erpWorkOrder_bool_exp],
  "_not": erpWorkOrder_bool_exp,
  "_or": [erpWorkOrder_bool_exp],
  "closedDate": timestamptz_comparison_exp,
  "companyId": String_comparison_exp,
  "createdAt": timestamptz_comparison_exp,
  "description": String_comparison_exp,
  "dueDate": timestamptz_comparison_exp,
  "lot": String_comparison_exp,
  "method": String_comparison_exp,
  "part": erpParts_bool_exp,
  "partNumber": String_comparison_exp,
  "partRevision": String_comparison_exp,
  "quantityRequired": Float_comparison_exp,
  "scheduledEndDate": timestamptz_comparison_exp,
  "scheduledStartDate": timestamptz_comparison_exp,
  "split": String_comparison_exp,
  "status": String_comparison_exp,
  "sub": String_comparison_exp,
  "updatedAt": timestamptz_comparison_exp,
  "workOrderId": String_comparison_exp,
  "workOrderOperations": erpWorkOrderOperations_bool_exp
}

erpWorkOrder_constraint

Values
Enum Value Description

work_order_pk

Example
"work_order_pk"

erpWorkOrder_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
closedDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
description - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
dueDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
lot - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
method - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
part - erpParts_obj_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partNumber - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
partRevision - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
quantityRequired - Float Returns true if the event value is equal to one of the given values in the collection; false otherwise.
scheduledEndDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
scheduledStartDate - timestamptz Returns true if the event value is equal to one of the given values in the collection; false otherwise.
split - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
status - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
sub - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
workOrderId - String Returns true if the event value is equal to one of the given values in the collection; false otherwise.
workOrderOperations - erpWorkOrderOperations_arr_rel_insert_input Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "closedDate": "2022-05-07T01:08:03.420Z",
  "description": "xyz789",
  "dueDate": "2022-05-07T01:08:03.420Z",
  "lot": "abc123",
  "method": "xyz789",
  "part": erpParts_obj_rel_insert_input,
  "partNumber": "xyz789",
  "partRevision": "xyz789",
  "quantityRequired": 123.45,
  "scheduledEndDate": "2022-05-07T01:08:03.420Z",
  "scheduledStartDate": "2022-05-07T01:08:03.420Z",
  "split": "xyz789",
  "status": "xyz789",
  "sub": "abc123",
  "workOrderId": "abc123",
  "workOrderOperations": erpWorkOrderOperations_arr_rel_insert_input
}

erpWorkOrder_max_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
closedDate - order_by
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
description - order_by
dueDate - order_by
lot - order_by
method - order_by
partNumber - order_by
partRevision - order_by
quantityRequired - order_by
scheduledEndDate - order_by
scheduledStartDate - order_by
split - order_by
status - order_by
sub - order_by
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
Example
{
  "closedDate": "asc",
  "companyId": "asc",
  "createdAt": "asc",
  "description": "asc",
  "dueDate": "asc",
  "lot": "asc",
  "method": "asc",
  "partNumber": "asc",
  "partRevision": "asc",
  "quantityRequired": "asc",
  "scheduledEndDate": "asc",
  "scheduledStartDate": "asc",
  "split": "asc",
  "status": "asc",
  "sub": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc"
}

erpWorkOrder_min_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
closedDate - order_by
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
description - order_by
dueDate - order_by
lot - order_by
method - order_by
partNumber - order_by
partRevision - order_by
quantityRequired - order_by
scheduledEndDate - order_by
scheduledStartDate - order_by
split - order_by
status - order_by
sub - order_by
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
Example
{
  "closedDate": "asc",
  "companyId": "asc",
  "createdAt": "asc",
  "description": "asc",
  "dueDate": "asc",
  "lot": "asc",
  "method": "asc",
  "partNumber": "asc",
  "partRevision": "asc",
  "quantityRequired": "asc",
  "scheduledEndDate": "asc",
  "scheduledStartDate": "asc",
  "split": "asc",
  "status": "asc",
  "sub": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc"
}

erpWorkOrder_obj_rel_insert_input

Description

Returns true if the event value is equal to one of the given values in the collection; false otherwise.

Fields
Input Field Description
data - erpWorkOrder_insert_input! Returns true if the event value is equal to one of the given values in the collection; false otherwise.
on_conflict - erpWorkOrder_on_conflict Returns true if the event value is equal to one of the given values in the collection; false otherwise.
Example
{
  "data": erpWorkOrder_insert_input,
  "on_conflict": erpWorkOrder_on_conflict
}

erpWorkOrder_on_conflict

Fields
Input Field Description
constraint - erpWorkOrder_constraint!
update_columns - [erpWorkOrder_update_column!]!
where - erpWorkOrder_bool_exp Filter the data by using a (nested) boolean expression.
Example
{
  "constraint": "work_order_pk",
  "update_columns": ["closedDate"],
  "where": erpWorkOrder_bool_exp
}

erpWorkOrder_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
closedDate - order_by
companyId - order_by A globally unique identifier (UUID) for the company.
createdAt - order_by
description - order_by
dueDate - order_by
lot - order_by
method - order_by
part - erpParts_order_by
partNumber - order_by
partRevision - order_by
quantityRequired - order_by
scheduledEndDate - order_by
scheduledStartDate - order_by
split - order_by
status - order_by
sub - order_by
updatedAt - order_by
workOrderId - order_by A globally unique identifier (UUID) for the workOrder.
workOrderOperations_aggregate - erpWorkOrderOperations_aggregate_order_by
Example
{
  "closedDate": "asc",
  "companyId": "asc",
  "createdAt": "asc",
  "description": "asc",
  "dueDate": "asc",
  "lot": "asc",
  "method": "asc",
  "part": erpParts_order_by,
  "partNumber": "asc",
  "partRevision": "asc",
  "quantityRequired": "asc",
  "scheduledEndDate": "asc",
  "scheduledStartDate": "asc",
  "split": "asc",
  "status": "asc",
  "sub": "asc",
  "updatedAt": "asc",
  "workOrderId": "asc",
  "workOrderOperations_aggregate": erpWorkOrderOperations_aggregate_order_by
}

erpWorkOrder_select_column

Values
Enum Value Description

closedDate

companyId

A globally unique identifier (UUID) for the company.

createdAt

description

dueDate

lot

method

partNumber

partRevision

quantityRequired

scheduledEndDate

scheduledStartDate

split

status

sub

updatedAt

workOrderId

A globally unique identifier (UUID) for the workOrder.
Example
"closedDate"

erpWorkOrder_stddev_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

erpWorkOrder_stddev_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

erpWorkOrder_stddev_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

erpWorkOrder_sum_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

erpWorkOrder_update_column

Values
Enum Value Description

closedDate

description

dueDate

lot

method

partNumber

partRevision

quantityRequired

scheduledEndDate

scheduledStartDate

split

status

sub

workOrderId

A globally unique identifier (UUID) for the workOrder.
Example
"closedDate"

erpWorkOrder_var_pop_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

erpWorkOrder_var_samp_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

erpWorkOrder_variance_order_by

Description

Sort the returned array by one or more fields of it's elements.

Fields
Input Field Description
quantityRequired - order_by
Example
{"quantityRequired": "asc"}

float8

Example
43.12

float8_comparison_exp

Fields
Input Field Description
_eq - float8 Returns true if the event value is equal to the given value; false otherwise.
_gt - float8 Returns true if the event value is greater than the given value; false otherwise.
_gte - float8 Returns true if the event value is greater than the given value; false otherwise.
_in - [float8!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - float8 Returns true if the event value is less than the given value; false otherwise.
_lte - float8 Returns true if the event value is less than the given value; false otherwise.
_neq - float8 Returns true if the event value is not equal to the given value; false otherwise.
_nin - [float8!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": 43.12,
  "_gt": 43.12,
  "_gte": 43.12,
  "_in": [43.12],
  "_is_null": false,
  "_lt": 43.12,
  "_lte": 43.12,
  "_neq": 43.12,
  "_nin": [43.12]
}

interval

Example
"1h"

interval_comparison_exp

Fields
Input Field Description
_eq - interval Returns true if the event value is equal to the given value; false otherwise.
_gt - interval Returns true if the event value is greater than the given value; false otherwise.
_gte - interval Returns true if the event value is greater than the given value; false otherwise.
_in - [interval!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - interval Returns true if the event value is less than the given value; false otherwise.
_lte - interval Returns true if the event value is less than the given value; false otherwise.
_neq - interval Returns true if the event value is not equal to the given value; false otherwise.
_nin - [interval!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": "1h",
  "_gt": "1h",
  "_gte": "1h",
  "_in": ["1h"],
  "_is_null": false,
  "_lt": "1h",
  "_lte": "1h",
  "_neq": "1h",
  "_nin": ["1h"]
}

jsonb

Example
jsonb

jsonb_cast_exp

Fields
Input Field Description
String - String_comparison_exp
Example
{"String": String_comparison_exp}

jsonb_comparison_exp

Fields
Input Field Description
_cast - jsonb_cast_exp
_contained_in - jsonb Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_contains - jsonb
_eq - jsonb Returns true if the event value is equal to the given value; false otherwise.
_gt - jsonb Returns true if the event value is greater than the given value; false otherwise.
_gte - jsonb Returns true if the event value is greater than the given value; false otherwise.
_has_key - String
_has_keys_all - [String!]
_has_keys_any - [String!]
_in - [jsonb!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - jsonb Returns true if the event value is less than the given value; false otherwise.
_lte - jsonb Returns true if the event value is less than the given value; false otherwise.
_neq - jsonb Returns true if the event value is not equal to the given value; false otherwise.
_nin - [jsonb!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_cast": jsonb_cast_exp,
  "_contained_in": jsonb,
  "_contains": jsonb,
  "_eq": jsonb,
  "_gt": jsonb,
  "_gte": jsonb,
  "_has_key": "abc123",
  "_has_keys_all": ["abc123"],
  "_has_keys_any": ["abc123"],
  "_in": [jsonb],
  "_is_null": false,
  "_lt": jsonb,
  "_lte": jsonb,
  "_neq": jsonb,
  "_nin": [jsonb]
}

latestPositionsByMachine_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
Example
{"machineRef": 987, "metricKey": "xyz789"}

latestQuantitiesByMachine_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
Example
{"machineRef": 123, "metricKey": "xyz789"}

numeric

Example
numeric

numeric_comparison_exp

Fields
Input Field Description
_eq - numeric Returns true if the event value is equal to the given value; false otherwise.
_gt - numeric Returns true if the event value is greater than the given value; false otherwise.
_gte - numeric Returns true if the event value is greater than the given value; false otherwise.
_in - [numeric!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - numeric Returns true if the event value is less than the given value; false otherwise.
_lte - numeric Returns true if the event value is less than the given value; false otherwise.
_neq - numeric Returns true if the event value is not equal to the given value; false otherwise.
_nin - [numeric!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": numeric,
  "_gt": numeric,
  "_gte": numeric,
  "_in": [numeric],
  "_is_null": false,
  "_lt": numeric,
  "_lte": numeric,
  "_neq": numeric,
  "_nin": [numeric]
}

order_by

Description

Sort the returned array by one or more fields of it's elements.

Values
Enum Value Description

asc

asc_nulls_first

asc_nulls_last

desc

desc_nulls_first

desc_nulls_last

Example
"asc"

partCounts_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
Example
{
  "machineRef": 987,
  "metricKey": "abc123",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z"
}

positions_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
Example
{
  "machineRef": 123,
  "metricKey": "abc123",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z"
}

quantities_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
Example
{
  "machineRef": 987,
  "metricKey": "xyz789",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z"
}

smallint

Example
smallint

smallint_comparison_exp

Fields
Input Field Description
_eq - smallint Returns true if the event value is equal to the given value; false otherwise.
_gt - smallint Returns true if the event value is greater than the given value; false otherwise.
_gte - smallint Returns true if the event value is greater than the given value; false otherwise.
_in - [smallint!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - smallint Returns true if the event value is less than the given value; false otherwise.
_lte - smallint Returns true if the event value is less than the given value; false otherwise.
_neq - smallint Returns true if the event value is not equal to the given value; false otherwise.
_nin - [smallint!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": smallint,
  "_gt": smallint,
  "_gte": smallint,
  "_in": [smallint],
  "_is_null": false,
  "_lt": smallint,
  "_lte": smallint,
  "_neq": smallint,
  "_nin": [smallint]
}

stateIntervals_args

Description

A set of arguments passed to the function.

Fields
Input Field Description
machineRef - Int A unique, numeric identifier for the machine.
metricKey - String Each metric is globally identified by the combination of machineRef and metricKey.
windowEndAt - timestamptz The end of a time window.
windowStartAt - timestamptz The start of a time window.
Example
{
  "machineRef": 987,
  "metricKey": "abc123",
  "windowEndAt": "2022-05-07T01:08:03.420Z",
  "windowStartAt": "2022-05-07T01:08:03.420Z"
}

timestamp

Example
"2022-05-07T01:08:03.420Z"

timestamp_comparison_exp

Fields
Input Field Description
_eq - timestamp Returns true if the event value is equal to the given value; false otherwise.
_gt - timestamp Returns true if the event value is greater than the given value; false otherwise.
_gte - timestamp Returns true if the event value is greater than the given value; false otherwise.
_in - [timestamp!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - timestamp Returns true if the event value is less than the given value; false otherwise.
_lte - timestamp Returns true if the event value is less than the given value; false otherwise.
_neq - timestamp Returns true if the event value is not equal to the given value; false otherwise.
_nin - [timestamp!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": "2022-05-07T01:08:03.420Z",
  "_gt": "2022-05-07T01:08:03.420Z",
  "_gte": "2022-05-07T01:08:03.420Z",
  "_in": ["2022-05-07T01:08:03.420Z"],
  "_is_null": false,
  "_lt": "2022-05-07T01:08:03.420Z",
  "_lte": "2022-05-07T01:08:03.420Z",
  "_neq": "2022-05-07T01:08:03.420Z",
  "_nin": ["2022-05-07T01:08:03.420Z"]
}

timestamptz

Example
"2022-05-07T01:08:03.420Z"

timestamptz_comparison_exp

Fields
Input Field Description
_eq - timestamptz Returns true if the event value is equal to the given value; false otherwise.
_gt - timestamptz Returns true if the event value is greater than the given value; false otherwise.
_gte - timestamptz Returns true if the event value is greater than the given value; false otherwise.
_in - [timestamptz!] Returns true if the event value is equal to one of the given values in the collection; false otherwise.
_is_null - Boolean Checks whether the event value is or is not NULL.
_lt - timestamptz Returns true if the event value is less than the given value; false otherwise.
_lte - timestamptz Returns true if the event value is less than the given value; false otherwise.
_neq - timestamptz Returns true if the event value is not equal to the given value; false otherwise.
_nin - [timestamptz!] Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Example
{
  "_eq": "2022-05-07T01:08:03.420Z",
  "_gt": "2022-05-07T01:08:03.420Z",
  "_gte": "2022-05-07T01:08:03.420Z",
  "_in": ["2022-05-07T01:08:03.420Z"],
  "_is_null": true,
  "_lt": "2022-05-07T01:08:03.420Z",
  "_lte": "2022-05-07T01:08:03.420Z",
  "_neq": "2022-05-07T01:08:03.420Z",
  "_nin": ["2022-05-07T01:08:03.420Z"]
}