Waiting for engine...
Skip to main content

environmentChangesDeployedApi

Returns the DeployedApi changes for API Deployment on the specified environment.

Input Parameters:

  • input: Environment change configuration including environment ID and version range.

Response: EntityChangeSetDeployedApi object containing deployed API changes with action types and definitions.

Example Request:

query {
environmentChangesDeployedApi(input: {
environmentId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
minVersion: 0,
maxVersion: 100
}) {
changes {
id,
action,
version,
definition {
id,
version,
component {
id,
name
},
environment {
id,
name
},
metadata {
title,
version,
description
}
}
}
}
}

environmentChangesDeployedApi(
input: EnvironmentChangeInput!
): EntityChangeSetDeployedApi!

Arguments

environmentChangesDeployedApi.input ● EnvironmentChangeInput! non-null input platform

Type

EntityChangeSetDeployedApi object platform

Contains a collection of deployed API entity changes for synchronization purposes.

On this Page