INTERFACE

EntityRelationshipNodeInterface

link GraphQL Schema definition

  • interface EntityRelationshipNodeInterface {
  • # Time this Relationship was created. Note: Expressed in UTC ISO-8601 format
  • creationTime: DateTime!
  • # dest entityId
  • destEntityId: EntityId
  • # dest entity provider if available
  • destEntityProvider: String
  • # dest entityType if available
  • destEntityType: String
  • # dest entityType projected as an enum value, if available
  • destEntityTypeConst: EntityTypeConst
  • # Opaque global ID
  • id: ID!
  • # Last time this Relationship was updated. Note: Expressed in UTC ISO-8601 format
  • lastUpdateTime: DateTime!
  • # Versioning ID
  • nodeVersion: ID!
  • properties: [EntityProperty!]
  • # entity relationship id
  • relationshipId: String!
  • # Type of the relationship. e.g. RelatesTo etc
  • relationshipType: String!
  • # source entityId
  • sourceEntityId: EntityId
  • # source entity provider if available
  • sourceEntityProvider: String
  • # source entityType if available
  • sourceEntityType: String
  • # source entityType projected as an enum value, if available
  • sourceEntityTypeConst: EntityTypeConst
  • # Scope of relationship's traversal
  • traversalScope: EntityTraversalScope
  • }