OBJECT
treeSequence
The nodes of a tree
link GraphQL Schema definition
- type treeSequence {
- # The id of the sequence
- : String!
- # The number of nodes in the tree sequence
- : Int!
- # The nodes in the tree sequence
- : [node!]!
- # The JSON result for a Tribos query, as a string
- #
- # Arguments
- # query: The Tribos query string
- (: String!): String!
- # Tribos documentation
- : String!
- # A list of the tags of this sequence
- : [String!]!
- # Whether or not the sequence has the specified tag
- #
- # Arguments
- # tagName: The tag name
- (: String!): Boolean!
- }