OBJECT

cell

A table cell

link GraphQL Schema definition

  • type cell {
  • # The row numbers
  • rows: [Int!]!
  • # The column numbers
  • columns: [Int!]!
  • # A list of items from the c (content) field of the cell
  • items: [Item!]!
  • # A list of tokens from the c (content) field of the cell
  • tokens: [Item!]!
  • # The text of the cell as a single string
  • #
  • # Arguments
  • # normalizeSpace: If true, converts each whitespace character to
  • # a single space
  • text(normalizeSpace: Boolean): String!
  • }