Тип

FileCondition

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

"""
A condition to be used against `File` object types. All fields are tested for equality and combined with a logical ‘and.’
"""
input FileCondition {
  """Checks for equality with the object’s `rowId` field."""
  rowId: UUID
  """Checks for equality with the object’s `teamId` field."""
  teamId: UUID
  """Checks for equality with the object’s `parentId` field."""
  parentId: UUID
  """Checks for equality with the object’s `key` field."""
  key: String
  """Checks for equality with the object’s `thumbnailUrl` field."""
  thumbnailUrl: String
  """Checks for equality with the object’s `url` field."""
  url: String
}