OBJECT

kvSequence

A contiguous flow of content for key-values

link GraphQL Schema definition

  • type kvSequence {
  • # The id of the sequence
  • id: String!
  • # The number of entries in the key-value sequence
  • nEntries: 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
  • entries(
  • keyMatches: String,
  • keyEquals: [String!],
  • secondaryMatches: [KeyMatches!],
  • secondaryEquals: [KeyValues!],
  • contentMatches: [KeyMatches!],
  • contentEquals: [KeyValues!]
  • ): [kvEntry!]
  • # 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!
  • }