INPUT_OBJECT

ObjectInstanceCondition

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

link GraphQL Schema definition

  • input ObjectInstanceCondition {
  • # Checks for equality with the object’s `rowId` field.
  • rowId: UUID
  • # Checks for equality with the object’s `clientCompanyRowId` field.
  • clientCompanyRowId: UUID
  • # Checks for equality with the object’s `className` field.
  • className: TrimmedText
  • # Checks for equality with the object’s `createdBy` field.
  • createdBy: TrimmedText
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: Datetime
  • # Checks for equality with the object’s `disabledBy` field.
  • disabledBy: TrimmedText
  • # Checks for equality with the object’s `disabledAt` field.
  • disabledAt: Datetime
  • # Checks for equality with the object’s `active` field.
  • active: Boolean
  • # Checks for equality with the object’s `propsJson` field.
  • propsJson: JSON
  • }