Skip to content

Commit

Permalink
Update CLI schema
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Jul 13, 2018
1 parent 4bf02b1 commit 018f995
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cli/data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ type Project {
name: String
customer: Customer
git_url: String
subfolder: String
notifications(type: NotificationType): [Notification]
active_systems_deploy: String
active_systems_promote: String
Expand All @@ -217,6 +218,7 @@ type Project {
storage_calc: Int
pullrequests: String
openshift: Openshift
openshift_project_pattern: String
sshKeys: [SshKey]
environments(type: EnvType, include_deleted: Boolean): [Environment]
created: String
Expand All @@ -227,7 +229,9 @@ input ProjectInput {
name: String!
customer: Int!
git_url: String!
subfolder: String
openshift: Int!
openshift_project_pattern: String
active_systems_deploy: String
active_systems_promote: String
active_systems_remove: String
Expand Down Expand Up @@ -371,6 +375,7 @@ input UpdateProjectPatchInput {
name: String
customer: Int
git_url: String
subfolder: String
active_systems_deploy: String
active_systems_remove: String
branches: String
Expand All @@ -379,6 +384,7 @@ input UpdateProjectPatchInput {
storage_calc: Int
pullrequests: String
openshift: Int
openshift_project_pattern: String
}

input UpdateSshKeyInput {
Expand Down
64 changes: 64 additions & 0 deletions cli/data/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "subfolder",
"description": "",
"args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "notifications",
"description": "",
Expand Down Expand Up @@ -601,6 +613,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "openshift_project_pattern",
"description": "",
"args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "sshKeys",
"description": "",
Expand Down Expand Up @@ -2823,6 +2847,16 @@
},
"defaultValue": null
},
{
"name": "subfolder",
"description": "",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": null
},
{
"name": "active_systems_deploy",
"description": "",
Expand Down Expand Up @@ -2902,6 +2936,16 @@
"ofType": null
},
"defaultValue": null
},
{
"name": "openshift_project_pattern",
"description": "",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": null
}
],
"interfaces": null,
Expand Down Expand Up @@ -2966,6 +3010,16 @@
},
"defaultValue": null
},
{
"name": "subfolder",
"description": "",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": null
},
{
"name": "openshift",
"description": "",
Expand All @@ -2980,6 +3034,16 @@
},
"defaultValue": null
},
{
"name": "openshift_project_pattern",
"description": "",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": null
},
{
"name": "active_systems_deploy",
"description": "",
Expand Down

0 comments on commit 018f995

Please sign in to comment.