-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
568 lines (524 loc) · 12.2 KB
/
Copy pathschema.graphql
File metadata and controls
568 lines (524 loc) · 12.2 KB
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
type Query {
Tagi(
filter: Tagi_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): [Tagi!]!
Tagi_by_id(id: ID!): Tagi
Tagi_aggregated(
groupBy: [String]
filter: Tagi_filter
limit: Int
offset: Int
page: Int
search: String
sort: [String]
): [Tagi_aggregated!]!
Tagi_by_version(version: String!, id: ID!): version_Tagi
Organizacje_Tagi(
filter: Organizacje_Tagi_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): [Organizacje_Tagi!]!
Organizacje_Tagi_by_id(id: ID!): Organizacje_Tagi
Organizacje_Tagi_aggregated(
groupBy: [String]
filter: Organizacje_Tagi_filter
limit: Int
offset: Int
page: Int
search: String
sort: [String]
): [Organizacje_Tagi_aggregated!]!
Organizacje_Tagi_by_version(
version: String!
id: ID!
): version_Organizacje_Tagi
Organizacje(
filter: Organizacje_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): [Organizacje!]!
Organizacje_by_id(id: ID!): Organizacje
Organizacje_aggregated(
groupBy: [String]
filter: Organizacje_filter
limit: Int
offset: Int
page: Int
search: String
sort: [String]
): [Organizacje_aggregated!]!
Organizacje_by_version(version: String!, id: ID!): version_Organizacje
Organizacje_files(
filter: Organizacje_files_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): [Organizacje_files!]!
Organizacje_files_by_id(id: ID!): Organizacje_files
Organizacje_files_aggregated(
groupBy: [String]
filter: Organizacje_files_filter
limit: Int
offset: Int
page: Int
search: String
sort: [String]
): [Organizacje_files_aggregated!]!
Organizacje_files_by_version(
version: String!
id: ID!
): version_Organizacje_files
}
type Subscription {
Tagi_mutated(event: EventEnum): Tagi_mutated
Organizacje_Tagi_mutated(event: EventEnum): Organizacje_Tagi_mutated
Organizacje_mutated(event: EventEnum): Organizacje_mutated
Organizacje_files_mutated(event: EventEnum): Organizacje_files_mutated
}
"""
The `Boolean` scalar type represents `true` or `false`.
"""
scalar Boolean
"""
ISO8601 Date values
"""
scalar Date
"""
The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
"""
scalar Float
"""
A Float or a String
"""
scalar GraphQLStringOrFloat
"""
The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.
"""
scalar ID
"""
The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
"""
scalar Int
"""
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
"""
scalar JSON
"""
The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
"""
scalar String
enum EventEnum {
create
update
delete
}
type count_functions {
count: Int
}
type datetime_functions {
year: Int
month: Int
week: Int
day: Int
weekday: Int
hour: Int
minute: Int
second: Int
}
type Organizacje {
id: ID!
status: String
user_created: String
date_created: Date
date_created_func: datetime_functions
user_updated: String
date_updated: Date
date_updated_func: datetime_functions
email: String
field: String
longDescription: String
skillsAndChallenges: String
website: String
linkedin: String
facebook: String
instagram: String
youtube: String
slug: String!
name: String!
logo: String
shortDescription: String
achievements: String
distinguishingFeatures: String
areasOfInterest: String
tags(
filter: Organizacje_Tagi_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): [Organizacje_Tagi]
tags_func: count_functions
images(
filter: Organizacje_files_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): [Organizacje_files]
images_func: count_functions
}
type Organizacje_aggregated {
group: JSON
countAll: Int
count: Organizacje_aggregated_count
countDistinct: Organizacje_aggregated_count
}
type Organizacje_aggregated_count {
id: Int
status: Int
user_created: Int
date_created: Int
user_updated: Int
date_updated: Int
email: Int
field: Int
longDescription: Int
skillsAndChallenges: Int
website: Int
linkedin: Int
facebook: Int
instagram: Int
youtube: Int
slug: Int
name: Int
logo: Int
shortDescription: Int
achievements: Int
distinguishingFeatures: Int
areasOfInterest: Int
tags: Int
images: Int
}
type Organizacje_files {
id: ID!
Organizacje_id(
filter: Organizacje_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): Organizacje
directus_files_id: String
}
type Organizacje_files_aggregated {
group: JSON
countAll: Int
count: Organizacje_files_aggregated_count
countDistinct: Organizacje_files_aggregated_count
avg: Organizacje_files_aggregated_fields
sum: Organizacje_files_aggregated_fields
avgDistinct: Organizacje_files_aggregated_fields
sumDistinct: Organizacje_files_aggregated_fields
min: Organizacje_files_aggregated_fields
max: Organizacje_files_aggregated_fields
}
type Organizacje_files_aggregated_count {
id: Int
Organizacje_id: Int
directus_files_id: Int
}
type Organizacje_files_aggregated_fields {
id: Float
}
type Organizacje_files_mutated {
key: ID!
event: EventEnum
data: Organizacje_files
}
type Organizacje_mutated {
key: ID!
event: EventEnum
data: Organizacje
}
type Organizacje_Tagi {
id: ID!
Organizacje_id(
filter: Organizacje_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): Organizacje
Tagi_id(
filter: Tagi_filter
sort: [String]
limit: Int
offset: Int
page: Int
search: String
): Tagi
}
type Organizacje_Tagi_aggregated {
group: JSON
countAll: Int
count: Organizacje_Tagi_aggregated_count
countDistinct: Organizacje_Tagi_aggregated_count
avg: Organizacje_Tagi_aggregated_fields
sum: Organizacje_Tagi_aggregated_fields
avgDistinct: Organizacje_Tagi_aggregated_fields
sumDistinct: Organizacje_Tagi_aggregated_fields
min: Organizacje_Tagi_aggregated_fields
max: Organizacje_Tagi_aggregated_fields
}
type Organizacje_Tagi_aggregated_count {
id: Int
Organizacje_id: Int
Tagi_id: Int
}
type Organizacje_Tagi_aggregated_fields {
id: Float
Tagi_id: Float
}
type Organizacje_Tagi_mutated {
key: ID!
event: EventEnum
data: Organizacje_Tagi
}
type Tagi {
id: ID!
sort: Int
user_created: String
date_created: Date
date_created_func: datetime_functions
user_updated: String
date_updated: Date
date_updated_func: datetime_functions
tag: String!
}
type Tagi_aggregated {
group: JSON
countAll: Int
count: Tagi_aggregated_count
countDistinct: Tagi_aggregated_count
avg: Tagi_aggregated_fields
sum: Tagi_aggregated_fields
avgDistinct: Tagi_aggregated_fields
sumDistinct: Tagi_aggregated_fields
min: Tagi_aggregated_fields
max: Tagi_aggregated_fields
}
type Tagi_aggregated_count {
id: Int
sort: Int
user_created: Int
date_created: Int
user_updated: Int
date_updated: Int
tag: Int
}
type Tagi_aggregated_fields {
id: Float
sort: Float
}
type Tagi_mutated {
key: ID!
event: EventEnum
data: Tagi
}
"""
"""
type version_Organizacje {
id: ID!
status: String
user_created: String
date_created: Date
date_created_func: datetime_functions
user_updated: String
date_updated: Date
date_updated_func: datetime_functions
email: String
field: String
longDescription: String
skillsAndChallenges: String
website: String
linkedin: String
facebook: String
instagram: String
youtube: String
slug: String!
name: String!
logo: String
shortDescription: String
achievements: String
distinguishingFeatures: String
areasOfInterest: String
tags: JSON
tags_func: count_functions
images: JSON
images_func: count_functions
}
"""
"""
type version_Organizacje_files {
id: ID!
Organizacje_id: String
directus_files_id: String
}
"""
"""
type version_Organizacje_Tagi {
id: ID!
Organizacje_id: String
Tagi_id: Int
}
"""
"""
type version_Tagi {
id: ID!
sort: Int
user_created: String
date_created: Date
date_created_func: datetime_functions
user_updated: String
date_updated: Date
date_updated_func: datetime_functions
tag: String!
}
input count_function_filter_operators {
count: number_filter_operators
}
input date_filter_operators {
_eq: String
_neq: String
_gt: String
_gte: String
_lt: String
_lte: String
_null: Boolean
_nnull: Boolean
_in: [String]
_nin: [String]
_between: [GraphQLStringOrFloat]
_nbetween: [GraphQLStringOrFloat]
}
input datetime_function_filter_operators {
year: number_filter_operators
month: number_filter_operators
week: number_filter_operators
day: number_filter_operators
weekday: number_filter_operators
hour: number_filter_operators
minute: number_filter_operators
second: number_filter_operators
}
input number_filter_operators {
_eq: GraphQLStringOrFloat
_neq: GraphQLStringOrFloat
_in: [GraphQLStringOrFloat]
_nin: [GraphQLStringOrFloat]
_gt: GraphQLStringOrFloat
_gte: GraphQLStringOrFloat
_lt: GraphQLStringOrFloat
_lte: GraphQLStringOrFloat
_null: Boolean
_nnull: Boolean
_between: [GraphQLStringOrFloat]
_nbetween: [GraphQLStringOrFloat]
}
input Organizacje_files_filter {
id: number_filter_operators
Organizacje_id: Organizacje_filter
directus_files_id: string_filter_operators
_and: [Organizacje_files_filter]
_or: [Organizacje_files_filter]
}
input Organizacje_filter {
id: string_filter_operators
status: string_filter_operators
user_created: string_filter_operators
date_created: date_filter_operators
date_created_func: datetime_function_filter_operators
user_updated: string_filter_operators
date_updated: date_filter_operators
date_updated_func: datetime_function_filter_operators
email: string_filter_operators
field: string_filter_operators
longDescription: string_filter_operators
skillsAndChallenges: string_filter_operators
website: string_filter_operators
linkedin: string_filter_operators
facebook: string_filter_operators
instagram: string_filter_operators
youtube: string_filter_operators
slug: string_filter_operators
name: string_filter_operators
logo: string_filter_operators
shortDescription: string_filter_operators
achievements: string_filter_operators
distinguishingFeatures: string_filter_operators
areasOfInterest: string_filter_operators
tags: Organizacje_Tagi_filter
tags_func: count_function_filter_operators
images: Organizacje_files_filter
images_func: count_function_filter_operators
_and: [Organizacje_filter]
_or: [Organizacje_filter]
}
input Organizacje_Tagi_filter {
id: number_filter_operators
Organizacje_id: Organizacje_filter
Tagi_id: Tagi_filter
_and: [Organizacje_Tagi_filter]
_or: [Organizacje_Tagi_filter]
}
input string_filter_operators {
_eq: String
_neq: String
_contains: String
_icontains: String
_ncontains: String
_starts_with: String
_nstarts_with: String
_istarts_with: String
_nistarts_with: String
_ends_with: String
_nends_with: String
_iends_with: String
_niends_with: String
_in: [String]
_nin: [String]
_null: Boolean
_nnull: Boolean
_empty: Boolean
_nempty: Boolean
}
input Tagi_filter {
id: number_filter_operators
sort: number_filter_operators
user_created: string_filter_operators
date_created: date_filter_operators
date_created_func: datetime_function_filter_operators
user_updated: string_filter_operators
date_updated: date_filter_operators
date_updated_func: datetime_function_filter_operators
tag: string_filter_operators
_and: [Tagi_filter]
_or: [Tagi_filter]
}