Skip to content

Commit e611a7b

Browse files
Updated README
Signed-off-by: Andriy Kalashnykov <[email protected]>
1 parent e1ac8a2 commit e611a7b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ Now navigate to https://localhost:8080 you can see graphiql playground and query
3030

3131
#### createUser
3232

33-
Execute createUser
33+
Execute createUser mutation
3434

3535
```graphql
3636
mutation createUser {
3737
createUser(input: {username: "usr2", password: "pwd"})
3838
}
3939
```
4040

41-
Expected output similar to:
41+
Expected JSON result:
4242

4343
```json
4444
{
@@ -50,15 +50,15 @@ Expected output similar to:
5050

5151
#### loginUser
5252

53-
Execute loginUser
53+
Execute loginUser mutation
5454

5555
```graphql
5656
mutation loginUser {
5757
login(input: {username: "usr2", password: "pwd"})
5858
}
5959
```
6060

61-
Expected output similar to:
61+
Expected JSON result:
6262

6363
```json
6464
{
@@ -72,13 +72,13 @@ Expected output similar to:
7272

7373
Set Authorization Header, use token from loginUser
7474

75-
```graphql
75+
```json
7676
{
7777
"Authorization": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2NjI3MzgyNDQsInVzZXJuYW1lIjoidXNyMiJ9.z0yrV6ajZO8IqFBlEuTwAnKRP-C15MuL1REmjJ5YYU8"
7878
}
7979
```
8080

81-
Execute createLink
81+
Execute createLink mutation
8282

8383

8484
```graphql
@@ -91,7 +91,7 @@ mutation createLink {
9191
}
9292
```
9393

94-
Expected output similar to:
94+
Expected JSON result:
9595

9696
```json
9797
{
@@ -107,7 +107,7 @@ Expected output similar to:
107107

108108
#### findLinks
109109

110-
Execute findLinks
110+
Execute findLinks query
111111

112112

113113
```graphql
@@ -120,7 +120,7 @@ query findLinks {
120120
}
121121
```
122122

123-
Expected output similar to:
123+
Expected JSON result:
124124

125125
```json
126126
{
@@ -144,7 +144,7 @@ Expected output similar to:
144144

145145
#### refreshToken
146146

147-
Execute refreshToken, provide current token as an input
147+
Execute refreshToken mutation, provide current token as an input
148148

149149

150150
```graphql
@@ -155,7 +155,7 @@ mutation refreshToken{
155155
}
156156
```
157157

158-
Expected output similar to:
158+
Expected JSON result:
159159

160160
```json
161161
{

0 commit comments

Comments
 (0)