OBJECT
kvSequence
A contiguous flow of content for key-values
link GraphQL Schema definition
- type kvSequence {
- # The id of the sequence
- : String!
- # The number of entries in the key-value sequence
- : Int!
- # The entries in the key-value sequence
- #
- # Arguments
- # keyMatches: Only return entries whose key matches the
- # specification
- # keyEquals: Only return entries whose key equals one of the
- # values in the specification
- # secondaryMatches: Only return entries whose secondary keys
- # match the specification
- # secondaryEquals: Only return entries whose secondary keys equal
- # one of the values in the specification
- # contentMatches: Only return entries whose content matches the
- # specification
- # contentEquals: Only return entries whose content equals one of
- # the values in the specification
- (
- : String,
- : [String!],
- : [KeyMatches!],
- : [KeyValues!],
- : [KeyMatches!],
- : [KeyValues!]
- ): [kvEntry!]
- # 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!
- }