File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2391,12 +2391,14 @@ input CreateImageCredentialsInput {
23912391 label : String !
23922392 username : String !
23932393 password : String !
2394+ serveraddress : String
23942395}
23952396
23962397enum ImageCredentialsSortField {
23972398 ID
23982399 LABEL
23992400 USERNAME
2401+ SERVERADDRESS
24002402}
24012403
24022404":image_credentials connection"
@@ -2420,6 +2422,19 @@ type ImageCredentialsEdge {
24202422 node : ImageCredentials !
24212423}
24222424
2425+ input ImageCredentialsFilterServeraddress {
2426+ isNil : Boolean
2427+ eq : String
2428+ notEq : String
2429+ in : [String ]
2430+ lessThan : String
2431+ greaterThan : String
2432+ lessThanOrEqual : String
2433+ greaterThanOrEqual : String
2434+ like : String
2435+ ilike : String
2436+ }
2437+
24232438input ImageCredentialsFilterUsername {
24242439 isNil : Boolean
24252440 eq : String
@@ -2464,6 +2479,7 @@ input ImageCredentialsFilterInput {
24642479 id : ImageCredentialsFilterId
24652480 label : ImageCredentialsFilterLabel
24662481 username : ImageCredentialsFilterUsername
2482+ serveraddress : ImageCredentialsFilterServeraddress
24672483}
24682484
24692485input ImageCredentialsSortInput {
@@ -2482,6 +2498,7 @@ type ImageCredentials implements Node {
24822498 id : ID !
24832499 label : String !
24842500 username : String !
2501+ serveraddress : String
24852502}
24862503
24872504input ImageDeploymentFilterImageId {
You can’t perform that action at this time.
0 commit comments