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