This repository was archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsample_form.graphql
91 lines (89 loc) · 1.84 KB
/
sample_form.graphql
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
mutation {
addForm(input: [{
title: "Surveyo: Hello World!",
creator: {email: "[email protected]"},
isClosed: false,
fields: [
{
title: "Which Cartoon/Anime do you relate to the most?"
type: Text
order: 0
required:true
}
{
title: "When did you join Dgraph?"
type: Date
order: 1
required: false
}
{
title: "What comes to your mind when you think about Dgraph?"
type: Text
order:2
required:true
}
{
title: "Choose a swag you wish was available already at Dgraph?"
type: SingleChoice
order: 3
required:true
options: [
{
title: "Hoodie"
order: 0
}
{
title: "Sketch Notebook"
order: 1
}
{
title: "Fridge Magnet"
order: 2
}
{
title: "Diary and pen"
order:3
}
]
}
{
title: "Suppose you meet Diggy, what would be your first conversation like?"
type:Text
order: 4
required:true
}
{
title: "How are you finding this hackathon?"
type: SingleChoice
order: 5
required:true
options: [
{
title: "Loving this roller coaster ride"
order: 0
}
{
title: "Let's just say I lost some hair debugging :)"
order: 1
}
{
title: "Sitting on the fence ౦0o 。 (‾́。‾́ )"
order: 2
}
]
}
{
title: "Please rate this survey _/\\_"
type:Rating
required:true
count: 5
order: 6
}
]
}]) {
form {
id
}
}
}
0x4e23