-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmessage.http
60 lines (51 loc) · 1010 Bytes
/
message.http
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
### Add message
GRAPHQL http://localhost:8080/graphql
#Authorization: Bearer {{token}}
Authorization: Basic admin nimda
Content-Type: application/json
mutation AddMessage {
addMessage(input: {content: "new message "}) {
id,
content
}
}
### hello message with basic auth
GRAPHQL http://localhost:8080/graphql
Authorization: Basic admin nimda
Content-Type: application/json
query Hello {
hello {
id,
content
}
}
### hello message with OAuth token
GRAPHQL http://localhost:8080/graphql
Authorization: Bearer {{token}}
Content-Type: application/json
query Hello {
hello {
id,
content
}
}
### Subscriptions over WebSockets
GRAPHQL http://localhost:8080/graphql
#Authorization: Bearer {{token}}
Authorization: Basic admin nimda
Content-Type: application/json
subscription Messages {
messages {
id,
content
}
}
### messages
#WEBSOCKET ws://localhost:8080/graphql
#
#subscription Messages {
# messages {
# id,
# content
# }
#}