Skip to content

Commit 546660f

Browse files
committed
Bring back cookbook lost in rebasing
1 parent d6139df commit 546660f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pages/apis/graphql/cookbooks/pipelines.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,3 +173,21 @@ mutation PipelineDelete {
173173
}
174174
}
175175
```
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

Comments
 (0)