We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a56108b commit 8bd2e3dCopy full SHA for 8bd2e3d
examples/queries/queryAll.graphql
@@ -0,0 +1,46 @@
1
+query QueryUser {
2
+ externalUsers {
3
+ id
4
+ name
5
+ email
6
+ username
7
+ phone
8
+ website
9
+ company {
10
+ catchPhrase
11
+ bs
12
+ }
13
14
+ user(id: 1) {
15
16
17
18
+ role
19
+ permissions
20
+ tags
21
+ skillCategories
22
+ products {
23
24
25
26
+ recentActivity {
27
+ ... on Post {
28
+ postId: id
29
+ title
30
+ authorId
31
32
+ ... on Comment {
33
+ commentId: id
34
+ content
35
36
37
38
+ profile {
39
+ displayName
40
+ timezone
41
+ theme
42
43
+ bio
44
+ age
45
46
+}
0 commit comments