environmentMigrationDeployedApis
Returns the list of deployed APIs in the environment being migrated.
Input Parameters:
environmentId: ID of the environment to get deployed APIs for migration.
Response: Array of DeployedApiMigration objects containing deployed API details and gateway information.
Example Request:
query {
environmentMigrationDeployedApis(environmentId: "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>") {
deployedApi {
id,
version,
environment {
id,
name
},
component {
id,
name,
type,
version,
definition,
},
metadata {
title,
version,
description
},
endpoints {
type,
contextPath,
basePath
}
},
gatewayId
}
}
environmentMigrationDeployedApis(
environmentId: String!
): [DeployedApiMigration!]!
Arguments
environmentMigrationDeployedApis.environmentId ● String! non-null scalar miscellaneous
Type
DeployedApiMigration object platform
Migration information for a deployed API to a different gateway.
Was this topic helpful?