OBJECT

Rectangle

link GraphQL Schema definition

  • type Rectangle {
  • # Horizontal position of the item on the dashboard grid, in grid columns from the
  • # left edge.
  • x: Int!
  • # Vertical position of the item on the dashboard grid, in grid rows from the top
  • # edge.
  • y: Int!
  • # Width of the item on the dashboard grid, measured in grid columns.
  • width: Int!
  • # Height of the item on the dashboard grid, measured in grid rows.
  • height: Int!
  • }