-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.txt
133 lines (91 loc) · 1.52 KB
/
query.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
# query {
# users {
# edges {
# node {
# username,
# archived,
# verified,
# email,
# secondaryEmail,
# }
# }
# }
# }
# query {
# users(status_Archived: false){
# edges {
# node {
# username,
# archived,
# }
# }
# }
# }
# query {
# me {
# username,
# verified
# }
# }
# query {
# users (last: 1){
# edges {
# node {
# id,
# username,
# email,
# isActive,
# archived,
# verified,
# secondaryEmail
# }
# }
# }
# }
# query {
# user (id: "VXNlck5vZGU6OA=="){
# username,
# verified
# }
# }
# mutation {
# register(
# email: "new_user100@email.com",
# username: "admin100",
# password1: "adminadmin",
# password2: "adminadmin",
# ) {
# success,
# errors,
# token,
# refreshToken
# }
# }
# mutation {
# verifyAccount(token: "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VybmFtZSI6ImFkbWluMTAwIiwiZXhwIjoxNjczODA4NTU0LCJvcmlnSWF0IjoxNjczODA4MjU0fQ.VHe9zwHIC9usEdO7HQIzBow1BvVAanOQ8Ib-ZNGrdZQ") {
# success,
# errors
# }
# }
# mutation {
# tokenAuth(username: "admin100", password: "adminadmin") {
# success,
# errors,
# unarchiving,
# token,
# refreshToken,
# unarchiving,
# user {
# id,
# username,
# }
# }
# }
# mutation {
# updateAccount(
# firstName: "jhon"
# ) {
# success,
# errors
# }
# }