INTERFACE

Node

Defines the requirements for all Node types

link GraphQL Schema definition

  • interface Node {
  • # When and who created.
  • created: AtBy!
  • # A human-readable description.
  • description: String
  • # When and who modified.
  • lastModified: AtBy!
  • # The name.
  • name: String!
  • # The Tenant.
  • tenant: Tenant!
  • }

link Require by