Link
A connection between two nodes in the diagram
type Link {
id: ID!
srcField: String!
destField: String!
isConnection: Boolean
createdAt: DateTime!
updatedAt: DateTime!
srcId: ID!
destId: ID!
srcManifest: Manifest!
destManifest: Manifest!
}
Fields
Link.id
● ID!
non-null scalar
Unique identifier for the link
Link.srcField
● String!
non-null scalar
Source field name
Link.destField
● String!
non-null scalar
Destination field name
Link.isConnection
● Boolean
scalar
Whether this link represents a connection
Link.createdAt
● DateTime!
non-null scalar
When the link was created
Link.updatedAt
● DateTime!
non-null scalar
When the link was last updated
Link.srcId
● ID!
non-null scalar
ID of the source manifest
Link.destId
● ID!
non-null scalar
ID of the destination manifest
Link.srcManifest
● Manifest!
non-null object
Source manifest
Link.destManifest
● Manifest!
non-null object
Destination manifest
Returned By
linkCreated
subscription ● linkDeleted
subscription ● links
query
Member Of
Diagram
object ● LinkPayload
object