OBJECT

treeSequence

The nodes of a tree

link GraphQL Schema definition

  • type treeSequence {
  • # The id of the sequence
  • id: String!
  • # The number of nodes in the tree sequence
  • nNodes: Int!
  • # The nodes in the tree sequence
  • nodes: [node!]!
  • # The JSON result for a Tribos query, as a string
  • #
  • # Arguments
  • # query: The Tribos query string
  • tribos(query: String!): String!
  • # The JSON results for the Tribos queries, as an array of strings
  • #
  • # Arguments
  • # queries: The Tribos query strings
  • triboi(queries: [String!]!): [String!]!
  • # Tribos documentation
  • tribosDoc: String!
  • # 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!
  • }