-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmutations.yml
46 lines (45 loc) · 1.26 KB
/
mutations.yml
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
- type: Mutation
field: createNote
request: "mutations/createNote.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: createList
request: "mutations/createList.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: createUser
request: "mutations/createUser.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: updateList
request: "mutations/updateList.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: updateNote
request: "mutations/updateNote.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: updateUser
request: "mutations/updateUser.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: deleteList
request: "mutations/deleteList.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: deleteNote
request: "mutations/deleteNote.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS
- type: Mutation
field: deleteUser
request: "mutations/deleteUser.req.vtl"
response: "mutations/response.vtl"
dataSource: POSTGRES_RDS