Skip to content

Commit

Permalink
Merge pull request #3677 from uselagoon/storage-bytes-fixes
Browse files Browse the repository at this point in the history
fix: mutation name for addorupdatestorageonenvironment
  • Loading branch information
tobybellwood authored Mar 12, 2024
2 parents 45e9c1f + e6e09a5 commit 365ef2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ mutation PopulateApi {
type
}

UIProject1Environment1addStorage: addOrUpdateStorageOnEnvironment(input:{
UIProject1Environment1addStorage1: addOrUpdateStorageOnEnvironment(input:{
environment: 3
persistentStorageClaim: "nginx"
kibUsed: 200000
Expand All @@ -366,7 +366,7 @@ mutation PopulateApi {
kibUsed
}

UIProject1Environment1addStorage: addOrUpdateStorageOnEnvironment(input:{
UIProject1Environment1addStorage2: addOrUpdateStorageOnEnvironment(input:{
environment: 3
persistentStorageClaim: "mariadb"
kibUsed: 200000
Expand Down
4 changes: 2 additions & 2 deletions services/api/src/typeDefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2335,8 +2335,8 @@ const typeDefs = gql`
"""
addOrUpdateEnvironmentStorage(
input: AddOrUpdateEnvironmentStorageInput!
): EnvironmentStorage @deprecated(reason: "Use addOrUpdateStorageonEnvironment instead")
addOrUpdateStorageonEnvironment(
): EnvironmentStorage @deprecated(reason: "Use addOrUpdateStorageOnEnvironment instead")
addOrUpdateStorageOnEnvironment(
input: AddOrUpdateStorageOnEnvironmentInput!
): EnvironmentStorage
addNotificationSlack(input: AddNotificationSlackInput!): NotificationSlack
Expand Down

0 comments on commit 365ef2b

Please sign in to comment.