Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pluralsh/console-client-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.77
Choose a base ref
...
head repository: pluralsh/console-client-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.78
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jan 16, 2024

  1. extend service deployment

    zreigz committed Jan 16, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    143730e View commit details
Showing with 276 additions and 16 deletions.
  1. +268 −16 client.go
  2. +8 −0 graph/models.graphql
284 changes: 268 additions & 16 deletions client.go
8 changes: 8 additions & 0 deletions graph/models.graphql
Original file line number Diff line number Diff line change
@@ -13,6 +13,12 @@ fragment ServiceDeploymentBaseFragment on ServiceDeployment {
repository { ... GitRepositoryFragment }
}

fragment ComponentContentFragment on ComponentContent{
id
live
desired
}

fragment ServiceDeploymentFragment on ServiceDeployment {
...ServiceDeploymentBaseFragment
components {
@@ -24,11 +30,13 @@ fragment ServiceDeploymentFragment on ServiceDeployment {
state
synced
version
content {... ComponentContentFragment}
}
protect
deletedAt
sha
tarball
dryRun
configuration { name value }
}