GlobalIDImpl

data class GlobalIDImpl<T : NodeCompositeOutput>(val type: Type<T>, val internalID: String) : GlobalID<T> (source)

Default implementation of GlobalID.

GlobalIDImpl is a data class that represents a unique identifier for a node object in the Viaduct graph. It contains the type information and internal ID.

Constructors

Link copied to clipboard
constructor(type: Type<T>, internalID: String)

Properties

Link copied to clipboard
open override val internalID: String

The internal ID of the node object, e.g. 123.

Link copied to clipboard
open override val type: Type<T>

The type of the node object, e.g. User.