OBJECT

Index

Index is a graph primitive used for fast lookups of docs/connections that pass a boolean CEL expression

link GraphQL Schema definition

  • type Index {
  • # name is the unique name of the index in the graph
  • name: String!
  • # gtype is the type of object the validator will be applied to (ex: user)
  • gtype: String!
  • # expression is a boolean CEL expression used to evaluate the doc/connection
  • expression: String!
  • # if docs is true, this validator will be applied to documents.
  • docs: Boolean!
  • # if docs is true, this validator will be applied to connections.
  • connections: Boolean!
  • }