-
Notifications
You must be signed in to change notification settings - Fork 2
/
create_slide_deck.json
36 lines (36 loc) · 1.16 KB
/
create_slide_deck.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"query": "mutation CreateSlideDeck($title: String!, $sprintId: String!, $participants: [String]!, $endDate: String!, $sprintQuestions: [String]!, $background: String!, $deliverables: [String]!, $keyFindings: [String]!, $nextSteps: [String]!, $value: String!, $templateUrl: String) { createSlideDeck(title: $title, sprintId: $sprintId, participants: $participants, endDate: $endDate, sprintQuestions: $sprintQuestions, background: $background, deliverables: $deliverables, keyFindings: $keyFindings, nextSteps: $nextSteps, value: $value, templateUrl: $templateUrl) { slideDeck { url } } }",
"variables": {
"title": "My Title",
"sprintId": "A",
"participants": [
"Name1",
"Name2",
"Name3"
],
"endDate": "2018-01-01",
"sprintQuestions": [
"Question1",
"Question2",
"Question3"
],
"background": "Some Background Info",
"deliverables": [
"Deliverable1",
"Deliverable2",
"Deliverable3"
],
"keyFindings": [
"Finding1",
"Finding2",
"Finding3"
],
"nextSteps": [
"Step1",
"Step2",
"Step3"
],
"value": "Some Value",
"templateUrl": null
}
}