-
Notifications
You must be signed in to change notification settings - Fork 3
/
codegen.yml
185 lines (172 loc) · 3.58 KB
/
codegen.yml
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# Run codegen using: npm run generate
# Make sure schema endpoint is accessible!
schema:
- https://query.joystream.org/graphql # Pioneer
documents:
- >
query openingById($openingId: ID!) {
workingGroupOpeningByUniqueInput(where: {id: $openingId}) {
metadata {
applicationDetails
description
hiringLimit
expectedEnding
shortDescription
title
}
id
rewardPerBlock
stakeAmount
unstakingPeriod
}
}
- >
query workerById($workerId: ID!) {
workerByUniqueInput(where: {id: $workerId}) {
membership {
...MemberFields
}
status {
__typename
}
rewardPerBlock
stake
rewardAccount
roleAccount
stakeAccount
}
}
fragment ForumCategoryFields on ForumCategory {
id
parentId
title
}
fragment MemberFields on Membership {
handle
id
controllerAccount
rootAccount
isCouncilMember
roles {
id
groupId
status {
... on WorkerStatusActive {
__typename
}
... on WorkerStatusLeaving {
__typename
}
... on WorkerStatusLeft {
__typename
}
... on WorkerStatusTerminated {
__typename
}
}
isLead
}
}
- >
query applicationById($applicationId: ID!) {
workingGroupApplicationByUniqueInput(where: {id: $applicationId}) {
applicant {
handle
}
openingId
}
}
- >
query memberById($memberId: ID!) {
memberships(where: {id_eq: $memberId}) {
...MemberFields
}
}
- >
query memberByHandle($handle: String) {
memberships(where: {handle_eq: $handle}) {
...MemberFields
}
}
- >
query membersByHandles($handles: [String!]) {
memberships(where: {handle_in: $handles}) {
...MemberFields
}
}
- >
query workersByAccount($account: String!) {
workers(where: {rewardAccount_eq: $account}) {
id
membership {
...MemberFields
}
}
}
- >
query activeCouncilMembers {
electedCouncils(where: {endedAtBlock_eq: null}) {
councilMembers {
member {
...MemberFields
}
}
}
}
- >
query forumThreadById($threadId: ID!) {
forumThreadByUniqueInput(where: {id: $threadId}) {
id
title
author {
...MemberFields
}
category {
...ForumCategoryFields
}
}
}
- >
query postById($postId: ID!) {
forumPostByUniqueInput(where: {id: $postId}) {
id
author {
...MemberFields
}
thread {
id
title
author {
...MemberFields
}
category {
...ForumCategoryFields
}
}
}
}
- >
query getStorageNodes {
storageBuckets(where: {dataObjectsCount_gt: 0}) {
operatorMetadata {
nodeEndpoint
}
}
}
- >
query getStorageBagsByNodeEndpoint($nodeEndpoint: String!) {
storageBuckets(where: {operatorMetadata: {nodeEndpoint_eq: $nodeEndpoint}}) {
bags {
storageBuckets {
id
}
id
}
}
}
generates:
./src/qntypes.ts:
plugins:
- typescript
- typescript-operations
- typescript-graphql-request