-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
156 lines (125 loc) · 2.18 KB
/
readme.txt
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
*ensure current project target before running in PMC is GraphQLPizzaOrder.Data*
Add-Migration InitializeDatabase
*not working*
dotnet-ef migrations add InitializeDatabase --project GraphQLPizzaOrder.Data --start-up-project GraphQLPizzaOrder.API --context PizzaOrderContext
query getNewOrders{
newOrders {
id
orderStatus
addressLine1
pizzaDetails {
id
name
orderDetailId
toppings
price
}
}
}
mutation UpdateStatus{
updateStatus(id: 1, status: InKitchen) {
id
orderStatus
}
}
query getPizzaDetails {
pizzaDetails(id: 7) {
id
name
toppings
}
}
query GetSpecificOrder{
orderDetails(id: 7){
addressLine1
id
mobileNo
pizzaDetails {
id
name
}
}
}
mutation NewOrder($orderDetail: OrderDetailInputType!) {
createOrder(orderDetail: $orderDetail){
id
addressLine1
amount
mobileNo
pizzaDetails {
id
name
orderDetailId
price
toppings
}
date
}
}
mutation DeletePizzaDetail($id: Int!){
deletePizzaDetail(id: $id){
id
addressLine1
amount
date
pizzaDetails {
id
name
orderDetailId
}
}
}
#get orders with status = Delivered
query GetCompletedOrders{
completedOrders(first: 1, orderBy: {field: AMOUNT direction: ASC} ){
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
totalCount
edges {
cursor
node {
id
addressLine1
amount
}
}
}
}
mutation Update{
updateStatus(id: 2 status: Delivered){
addressLine1
id
orderStatus
}
}
variables
{
"orderDetail": {
"addressLine1": "8 Brasilia",
"mobileNo": "823042",
"amount": 999,
"pizzaDetails": [{
"name": "Gem's",
"price": 2000,
"size": 99,
"toppings": "PEPPERONI"
}]
}
}
Subscriptions
subscription ListenOnNewOrdersCreated {
ordderCreated {
orderId
}
}
#OrderStatus updates to InKitchen will be listened (other types of status will not be)
subscription ListenOnOrderStatusUpdateBasedFromParameter {
statusUpdate(status: InKitchen) {
orderId
orderStatus
}
}