OBJECT

EntitySchema

==================== File contents from entity_schema.graphqls

link GraphQL Schema definition

  • type EntitySchema implements Node {
  • # Category of the entity. e.g. `Containers`, `Databases`, `Networking` etc.
  • category: String!
  • # ChangeEvents for this schema
  • changeEvents: [EntitySchemaChangeEvent!]
  • # EntityType of the entity. e.g. `AWS.EC2.Instance`, `AWS.ACM.Certificate`,
  • # `VMW.VC.VM` etc.
  • entityType: String!
  • # Opaque globally unique ID as per relay spec
  • id: ID!
  • # Namespaces for this schema
  • namespaces: [EntitySchemaNamespace!]
  • # Properties for this schema
  • properties: [EntitySchemaProperty!]
  • # Cloud provider
  • provider: String!
  • # Relationships for this schema
  • relationships: [EntitySchemaRelationship!]
  • # Cloud service resource type
  • resourceType: String!
  • # Cloud provider service
  • service: String!
  • }