Skip to main content

Connection

A connection between two instances in an environment, representing the runtime wiring of a blueprint link.

type Connection {
id: ID!
fromField: String!
toField: String!
createdAt: DateTime!
updatedAt: DateTime!
fromInstance: Instance
toInstance: Instance
link: Link
}

Fields

Connection.id ● ID! non-null scalar {#id}

Connection.fromField ● String! non-null scalar {#from-field}

Output field name on the source instance

Connection.toField ● String! non-null scalar {#to-field}

Input field name on the destination instance

Connection.createdAt ● DateTime! non-null scalar {#created-at}

When this connection was created (UTC)

Connection.updatedAt ● DateTime! non-null scalar {#updated-at}

When this connection was last modified (UTC)

Connection.fromInstance ● Instance object {#from-instance}

The source (from) instance that produces the resource.

Connection.toInstance ● Instance object {#to-instance}

The destination (to) instance that consumes the resource.

The blueprint link this connection instantiates.

Member Of

ConnectionsPage object