Skip to main content

removeRemoteReference

form schema

Remove a per-instance remote-reference override. The slot reverts to its blueprint Link (if any) or the environment default at the next deploy.

The instance must not be in PROVISIONED or FAILED status — taking an override off a deployed instance would change the resolved connection map under the running deployment.

mutation {
removeRemoteReference(
organizationId: "my-org"
instanceId: "my-app"
input: { field: "aws_authentication" }
) {
result { id field }
successful
messages { field message }
}
}
removeRemoteReference(
organizationId: ID!
instanceId: ID!
input: RemoveRemoteReferenceInput!
): RemoteReferencePayload

Form Schema

This mutation supports dynamic form generation using JSON Schema.

Loading schema...

Arguments

removeRemoteReference.organizationId ● ID! non-null scalar {#organization-id}

Your organization's unique identifier.

removeRemoteReference.instanceId ● ID! non-null scalar {#instance-id}

The instance the reference belongs to.

removeRemoteReference.input ● RemoveRemoteReferenceInput! non-null input {#input}

Remove a remote reference from an instance. The reference can only be removed if no provisioned instances are connected through it.

Type

RemoteReferencePayload object