INPUT_OBJECT

ObjectClassPropCondition

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

link GraphQL Schema definition

  • input ObjectClassPropCondition {
  • # Checks for equality with the object’s `rowId` field.
  • rowId: UUID
  • # Checks for equality with the object’s `className` field.
  • className: TrimmedText
  • # Checks for equality with the object’s `name` field.
  • name: TrimmedText
  • # Checks for equality with the object’s `type` field.
  • type: PropType
  • # Checks for equality with the object’s `required` field.
  • required: Boolean
  • # Checks for equality with the object’s `options` field.
  • options: [String]
  • # Checks for equality with the object’s `description` field.
  • description: TrimmedText
  • # Checks for equality with the object’s `pos` field.
  • pos: Int
  • }