OBJECT
tableSequence
A contiguous flow of content for a table
link GraphQL Schema definition
- type tableSequence {
- # The id of the sequence
- String! :
- # The number of cells in the table sequence
- Int! :
- # The number of rows in the table sequence
- Int! :
- # The number of columns in the table sequence
- Int! :
- # The cells in the table sequence
- 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
- (
- Int!], : [
- Int!], : [
- rowMatchSpec!], : [
- rowEqualsSpec!] : [
- ): [[cell!]!]!
- # A list of the tags of this sequence
- String!]! : [
- # A list of the tags of this sequence as key/value tuples
- KeyValue!]! : [
- # Whether or not the sequence has the specified tag
- #
- # Arguments
- # tagName: The tag name
- String): Boolean! ( :
- # A list of column headings for this tableSequence, derived from the sequence tags
- String!]! : [
- }