We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6139df commit 546660fCopy full SHA for 546660f
pages/apis/graphql/cookbooks/pipelines.md
@@ -173,3 +173,21 @@ mutation PipelineDelete {
173
}
174
175
```
176
+
177
+### Update pipeline schedule with multiple environment variables
178
179
+You can set multiple environment variables on a pipeline schedule by using the new-line value `\n` as a delimiter.
180
181
+```graphql
182
+mutation UpdateSchedule {
183
+ pipelineScheduleUpdate(input:{
184
+ id: "schedule-id"
185
+ env: "FOO=bar\nBAR=foo"
186
+ }) {
187
+ pipelineSchedule {
188
+ id
189
+ env
190
+ }
191
192
+}
193
+```
0 commit comments