github.com/pluralsh/plural-cli@v0.9.5/pkg/ui/web/src/graphql/installations.graphql (about) 1 fragment Installation on Installation { 2 id 3 context 4 license 5 licenseKey 6 acmeKeyId 7 acmeSecret 8 autoUpgrade 9 trackTag 10 repository { ...Repo } 11 # repository { ...Repository } 12 user { ...User } 13 oidcProvider { ...OIDCProvider } 14 } 15 16 query GetInstallation($name: String) { 17 installation(name: $name) { 18 ...Installation 19 } 20 } 21 22 query GetInstallationById($id: ID) { 23 installation(id: $id) { 24 ...Installation 25 } 26 } 27 28 query GetInstallations($first: Int) { 29 installations(first: $first) { 30 edges { node { ...Installation } } 31 } 32 } 33 34 mutation UpsertOidcProvider($id: ID!, $attributes: OidcAttributes!) { 35 upsertOidcProvider(installationId: $id, attributes: $attributes) { 36 id 37 } 38 }