OBJECT

tableSequence

A contiguous flow of content for a table

link GraphQL Schema definition

  • type tableSequence {
  • # The id of the sequence
  • id: String!
  • # The number of cells in the table sequence
  • nCells: Int!
  • # The number of rows in the table sequence
  • nRows: Int!
  • # The number of columns in the table sequence
  • nColumns: Int!
  • # The cells in the table sequence
  • cells: [cell!]!
  • # The rows in the table sequence
  • #
  • # Arguments
  • # positions: Only return rows whose zero-indexed position is in
  • # the list
  • # columns: Only return columns whose zero-indexed position is in
  • # the list
  • # matches: Only return rows whose cells match the specification
  • # equals: 'Only return rows whose cells contain one of the values
  • # in the specification
  • rows(
  • positions: [Int!],
  • columns: [Int!],
  • matches: [rowMatchSpec!],
  • equals: [rowEqualsSpec!]
  • ): [[cell!]!]!
  • # A list of the tags of this sequence
  • tags: [String!]!
  • # A list of the tags of this sequence as key/value tuples
  • tagsKv: [KeyValue!]!
  • # Whether or not the sequence has the specified tag
  • #
  • # Arguments
  • # tagName: The tag name
  • hasTag(tagName: String): Boolean!
  • # A list of column headings for this tableSequence, derived from the sequence tags
  • headings: [String!]!
  • }