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.88
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.89
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Feb 9, 2024

  1. Copy the full SHA
    fb9cce9 View commit details
  2. Merge pull request #18 from pluralsh/feat/cluster-gate-by-id

    feat: create get cluster gate by id client function
    rauerhans authored Feb 9, 2024
    Copy the full SHA
    3acee19 View commit details
Showing with 233 additions and 11 deletions.
  1. +63 −0 client.go
  2. +4 −0 graph/gates.graphql
  3. +98 −8 models_gen.go
  4. +68 −3 schema/schema.graphql
63 changes: 63 additions & 0 deletions client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions graph/gates.graphql
Original file line number Diff line number Diff line change
@@ -44,3 +44,7 @@ mutation updateGate($id: ID!, $attributes: GateUpdateAttributes!) {
...PipelineGateFragment
}
}

query GetClusterGate($id: ID!) {
clusterGate(id: $id) { ...PipelineGateFragment }
}
106 changes: 98 additions & 8 deletions models_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading