OBJECT
EntityNamespace
EntityNamespace should probably be defined in ensemble-graphql-common/src/main/resources/schema/common-entity/entity.graphqls
link GraphQL Schema definition
- type EntityNamespace {
- # Time the resource was created from the perspective of this namespace. Note:
- # Expressed in UTC ISO-8601 timestamp
- DateTime :
- # Optional resource display name from the perspective of this namespace
- String :
- # Optional resource id from the perspective of this namespace
- EntityId :
- # Last time resource was updated from the perspective of this namespace. Note:
- # Expressed in UTC ISO-8601 timestamp
- DateTime :
- # Namespace identifier
- String! :
- # Properties in this namespace, optionally filtered by name
- #
- # Arguments
- # name: [Not documented]
- String!]): [EntityProperty!] ( : [
- # Optional resource provider from the perspective of this namespace
- String :
- # Optional resource region from the perspective of this namespace
- String :
- # Optional resource service from the perspective of this namespace
- String :
- # Optional source of a namespace
- String :
- # Key/Value tags for this entity, optionally filtered by key
- #
- # Underlying systems that support multi-valued tags have multiple tag values
- # mapped to a comma-separated string.
- # Commas in values are escaped with a leading backslash, and any backslash
- # character in a value is itself escaped.
- #
- # Arguments
- # key: [Not documented]
- String!]): [Tag!] ( : [
- # Optional resource type from the perspective of this namespace
- String :
- # query timeseries stats from this namespace for this entity.
- #
- # Arguments
- # input: [Not documented]
- StatsInput): [Stat!] ( :
- }
link Require by
- EntityPrimary Entity type in the graph, implementing the individual EntityNode interface and with additional fields permitting traversals to other entities in the entity topology and to access other graph nodes with information related to the entity.
- EntityNodeBare Entity type, implementing the individual EntityNode interface, but without the ability to traverse to other Entities or other graph nodes containing information about the Entity. This type may be used in situations such as notifications where it is not possible to navigate the graph from the Entity information.
- EntityNodeInterface ==================== File contents from entity.graphqls