environmentMigrationComplete
Completes an environment migration and returns the final result status.
Input Parameters:
environmentId: ID of the environment migration to complete.
Response:
- Returns the MigrationResult object with completion status and any warnings.
Example Request:
mutation environmentMigrationComplete($environmentId: String!) {
environmentMigrationComplete(environmentId: $environmentId) {
status,
warnings {
environmentWarnings {
entityIds,
errorCode,
message,
severity
},
containerWarnings {
entityIds,
errorCode,
message,
severity
},
apiWarnings {
entityIds,
errorCode,
message,
severity
}
}
}
}
**Variables:**
```json
{
"environmentId": "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>"
}
environmentMigrationComplete(
environmentId: String!
): MigrationResult
Arguments
environmentMigrationComplete.environmentId ● String! non-null scalar miscellaneous
Type
MigrationResult object platform
Was this topic helpful?