OBJECT

CompactViewDrilldownModel

link GraphQL Schema definition

  • type CompactViewDrilldownModel {
  • # Arguments
  • # filter: List of columns to be displayed represented by their
  • # field idOrder of the display columns is kept in results, but frontend shouldkeep
  • # and watch it's own columns order map to optimize some user operations like
  • # remove of the column or moving column to a different position
  • # searchQuery: Fulltext search by string. When null, search is
  • # not applied.
  • # sortBy: Options settings for tab grid listing
  • # sortOrder: Options settings for tab grid sort order listing
  • # displayColumn: List of columns to be displayed represented by
  • # their field idOrder of the display columns is kept in results, but frontend
  • # shouldkeep and watch it's own columns order map to optimize some user operations
  • # like remove of the column or moving column to a different position
  • # highlightChanges: [Not documented]
  • # limit: Max item returned in the call
  • # offset: Offset scroll index, starting at 0
  • listViewItems(
  • filter: DrilldownFilterJSONString!,
  • searchQuery: String,
  • sortBy: ID!,
  • sortOrder: SortOrder!,
  • displayColumn: [DisplayColumnParams!]!,
  • highlightChanges: GridHighlightChangesParams,
  • limit: Int,
  • offset: Int
  • ): GenericDrilldownDataGridViewItems!
  • }