OBJECT

Connection

Connection is a graph primitive that represents a relationship between two docs

link GraphQL Schema definition

  • type Connection {
  • # ref is the ref to the connection
  • ref: Ref!
  • # k/v pairs
  • attributes: Map
  • # directed is false if the connection is bi-directional
  • directed: Boolean!
  • # from is the doc ref that is the source of the connection
  • from: Ref!
  • # to is the doc ref that is the destination of the connection
  • to: Ref!
  • }