INTERFACE

Node

Relay-compatible interface implemented by all graph nodes that are expected to be cached / re-fetched by their globally unique ID Non-volatile graph nodes are expected to implement the Node interface. Note that not all types implement the Node interface - types such as Connections and Edges, and volatile query response types are typically not expected to be cached on the client side and thus do not implement the Node interface.

Please see: Global Object Identification

link GraphQL Schema definition

  • interface Node {
  • # Opaque global node ID
  • id: ID!
  • }

link Require by