generated from muskanvaswan/next-mui-v5-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscratchpad
42 lines (41 loc) · 1 KB
/
scratchpad
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
var form;
for(question in data.questions) {
form = await prisma.question.upsert({
where: {
id: question.id
},
update: {
question: question.question,
subText: question.subText,
description: question.description,
options: {
createMany: question.options
},
},
create: {
formId: formId,
question: question.question,
subText: question.subText,
description: question.description,
options: {
createMany: question.options
},
}
});
}
const rawResponse = await fetch(`http://localhost:3000/api/form/${form.id}`, {
method: 'UPDATE',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
form: {
questions: questions,
theme: {
primary: primary,
secondary: secondary,
bgcolor: bgcolor
}
}
})
});