OBJECT

DisplayFieldItem

link GraphQL Schema definition

  • type DisplayFieldItem {
  • # An field if of a box source
  • fieldId: ID!
  • # Defines display mode of the field
  • displayOptions: DisplayOption
  • # Size of the column width, if value is Null uses default
  • columnWidth: Int
  • # RGB color code converted to integer, if value is Null uses no color
  • columnColor: Int
  • # Alignment of the column.
  • columnAlignment: ColumnAlignment
  • # Conditional formatting applied to this column's cells based on their value.
  • columnFormatting: ColumnFormatting
  • # How cell content that doesn't fit the column width is handled when the report is
  • # printed: Wrap keeps the full content on multiple lines, Clip prints it cut off
  • # to a single line. Affects printing only, not the report detail.
  • columnPrintOverflow: ColumnPrintOverflow!
  • }