-
Notifications
You must be signed in to change notification settings - Fork 0
/
clientQueries.txt
101 lines (84 loc) · 1.45 KB
/
clientQueries.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
----------------------------
query getAllUsers{
users{
_id
first_name
last_name
email
quotes{
name
by
}
}
}
----------------------------
query getAllQuotes{
quotes{
name
by
}
}
--------------------------
query getUserById($userId: ID!){
user(id:$userId){
first_name
last_name
email
quotes{
name
}
}
}
--------------------------
query getQuoteById($quoteId: ID!){
iquote(by:$quoteId){
name
by
}
}
----------------------------
mutation createUser($userNew: UserInput!){
user:signupUserDummy(userNew:$userNew){
_id
first_name
last_name
email
}
}
{
"userNew": {
"first_name": "parth",
"last_name": "bisht",
"email": "[email protected]",
"password": "12345"
}
}
---------------------------
mutation SigninUser($userSignin: UserSigninInput!){
user:signinUser(userSignin:$userSignin){
token
}
}
{
"userSignin": {
"email": "[email protected]",
"password": "12345"
}
}
--------------------------
mutation updateQuery($quoteUpdate: QuoteUpdateInput!){
updateQuote(quoteUpdate: $quoteUpdate){
_id
name
}
}
{
"authorization":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI2NDUzNTNhOTMwMWQxMDA1ZGIzMDVhN2IiLCJpYXQiOjE2ODMxOTQ2MzV9.Q4o4Z_i9nuDuslLNDHD6XEYCe8jOakX1X9EiMRKDfbk"
}
{
"quoteUpdate": {
"quoteId": "6453835802bac4f8364926de",
"name": "This is not so nice quote"
}
}
--------------------------