Skip to content

Commit

Permalink
Changed schema chaoshub (#4842)
Browse files Browse the repository at this point in the history
Signed-off-by: JanhaviAlekar <[email protected]>
  • Loading branch information
JanhaviAlekar committed Sep 6, 2024
1 parent 5232f49 commit 804a4e9
Show file tree
Hide file tree
Showing 6 changed files with 238 additions and 8 deletions.
24 changes: 24 additions & 0 deletions chaoscenter/graphql/definitions/shared/chaoshub.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ type ChaosHub implements ResourceDetails & Audit {
"""
repoBranch: String!
"""
Connected Hub of remote repository
"""
remoteHub: String!
"""
ID of the project in which the chaos hub is present
"""
projectID: ID!
Expand Down Expand Up @@ -206,6 +210,10 @@ type ChaosHubStatus implements ResourceDetails & Audit {
"""
repoBranch: String!
"""
Connected Hub of remote repository
"""
remoteHub: String!
"""
Bool value indicating whether the hub is available or not.
"""
isAvailable: Boolean!
Expand Down Expand Up @@ -320,6 +328,10 @@ input CreateChaosHubRequest {
"""
repoBranch: String!
"""
Connected Hub of remote repository
"""
remoteHub: String!
"""
Bool value indicating whether the hub is private or not.
"""
isPrivate: Boolean!
Expand Down Expand Up @@ -382,6 +394,10 @@ input CloningInput {
"""
repoURL: String!
"""
Connected Hub of remote repository
"""
remoteHub: String!
"""
Bool value indicating whether the hub is private or not.
"""
isPrivate: Boolean!
Expand Down Expand Up @@ -426,6 +442,10 @@ input CreateRemoteChaosHub {
URL of the git repository
"""
repoURL: String!
"""
Connected Hub of remote repository
"""
remoteHub: String!
}


Expand Down Expand Up @@ -455,6 +475,10 @@ input UpdateChaosHubRequest {
"""
repoBranch: String!
"""
Connected Hub of remote repository
"""
remoteHub: String!
"""
Bool value indicating whether the hub is private or not.
"""
isPrivate: Boolean!
Expand Down
Loading

0 comments on commit 804a4e9

Please sign in to comment.