DeploymentComparison
Side-by-side comparison of two deployments.
Returned by compareDeployments. Use this to audit what changed between two
points in an instance's history ("what did this deploy change?") or to
contrast two different deployments against each other.
The comparison is limited to snapshotted configuration — bundle version and params. Runtime state, logs, and produced artifacts are out of scope.
type DeploymentComparison {
source: Deployment!
target: Deployment!
version: VersionComparison!
params: [ParamComparison!]!
}
Fields
DeploymentComparison.source ● Deployment! non-null object {#source}
The deployment on the source side of the comparison.
DeploymentComparison.target ● Deployment! non-null object {#target}
The deployment on the target side of the comparison.
DeploymentComparison.version ● VersionComparison! non-null object {#version}
Bundle version on each side, with an equal flag for quick check.
DeploymentComparison.params ● [ParamComparison!]! non-null object {#params}
Flat, leaf-level diff of the two deployments' snapshotted params. Empty when both snapshots have no values to compare.
Returned By
compareDeployments query