OBJECT

MarkerEdge

An edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.

link GraphQL Schema definition

  • type MarkerEdge {
  • # The node value for the edge.
  • node: Marker!
  • # An opaque cursor pointing to an object in a connection.
  • #
  • # Used by the 'after' and 'before' pagination arguments.
  • cursor: String!
  • }