INPUT_OBJECT

ServerActionCondition

A condition to be used against ServerAction object types. All fields are tested for equality and combined with a logical ‘and.’

link GraphQL Schema definition

  • input ServerActionCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `deviceId` field.
  • deviceId: UUID
  • # Checks for equality with the object’s `type` field.
  • type: ActionType
  • # Checks for equality with the object’s `status` field.
  • status: ActionStatus
  • # Checks for equality with the object’s `input` field.
  • input: String
  • # Checks for equality with the object’s `options` field.
  • options: JSON
  • # Checks for equality with the object’s `output` field.
  • output: String
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: Datetime
  • # Checks for equality with the object’s `lastModifiedAt` field.
  • lastModifiedAt: Datetime
  • # Checks for equality with the object’s `lastModifiedBy` field.
  • lastModifiedBy: String
  • }