forked from the-deep/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
635 lines (550 loc) · 10.9 KB
/
schema.graphql
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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
type CountByDay {
count: Int!
date: String!
}
type CountByCentroid {
count: Int!
centroid: PointScalar
}
type DeepExploreStatsStatic {
projectsCountByDay: [CountByDay!]!
entriesCountByDay: [CountByDay!]!
leadsCountByDay: [CountByDay!]!
}
type CompleteTimeseries {
deepExploreStats: DeepExploreStatsStatic!
}
type TopOrganization {
id: String!
title: String!
leadsCount: Int!
projectsCount: Int!
}
type TopOrganization {
id: String!
title: String!
leadsCount: Int!
projectsCount: Int!
}
type TopProjectByUsers {
id: String!
title: String!
usersCount: Int!
}
type TopProjectByEntries {
id: String!
title: String!
entriesCount: Int!
leadsCount: Int!
}
type TopProjectByLeads {
id: String!
title: String!
entriesCount: Int!
leadsCount: Int!
}
type TopFramework {
id: String!
title: String!
entriesCount: Int!
projectsCount: Int!
}
type ProjectsByRegion {
id: String!
projectIds: [String!]
centroid: PointScalar
}
type YearlySnapshotData {
totalActiveUsers: Int!
totalAuthors: Int!
totalEntries: Int!
totalEntriesAddedLastWeek: Int!
totalLeads: Int!
totalProjects: Int!
totalPublishers: Int!
totalRegisteredUsers: Int!
topTenPublishers: [TopOrganization!]!
topTenAuthors: [TopOrganization!]!
topTenProjectsByUsers: [TopProjectByUsers!]!
topTenProjectsByEntries: [TopProjectByEntries!]!
topTenProjectsByLeads: [TopProjectByLeads!]!
topTenFrameworks: [TopFramework!]!
projectsByRegion: [ProjectsByRegion!]!
entriesCountByRegion: [CountByCentroid!]!
}
type YearlySnapshot {
deepExploreStats: YearlySnapshotData!
}
type MergedAsOrganization {
id: String!
title: String!
verified: Boolean
shortName: String
}
type Organization {
id: String!
title: String!
verified: Boolean
shortName: String
mergedAs: MergedAsOrganization
}
enum BorderStyleEnum {
DASHED
DOTTED
DOUBLE
NONE
SOLID
}
enum MapLayerTypeEnum {
HEAT_MAP_LAYER
LINE_LAYER
MAPBOX_LAYER
OSM_LAYER
POLYGON_LAYER
SYMBOL_LAYER
}
type BorderStyle {
width: Int
color: String
opacity: Int
style: BorderStyleEnum
}
type PaddingStyle {
top: Int
bottom: Int
right: Int
left: Int
}
type BackgroundStyle {
color: String
opacity: Int
}
enum Align {
CENTER
END
JUSTIFIED
START
}
type TextStyle {
align: Align
color: String
family: String
size: Int
weight: Int
}
type FileType {
id: String!
}
enum AnalysisReportUploadTypeEnum {
CSV
XLSX
GEOJSON
IMAGE
}
enum AnalysisReportVariableTypeEnum {
TEXT
NUMBER
DATE
BOOLEAN
}
type VariableType {
name: String
clientId: String
type: AnalysisReportVariableTypeEnum
completeness: Int
}
type CsvMetadataType {
headerRow: Int
variables: [VariableType!]!
}
type SheetType {
name: String
headerRow: Int
clientId: String
variables: [VariableType!]!
}
type XlsxMetadataType {
sheets: [SheetType!]!
}
type GeojsonMetadataType {
variables: [VariableType!]!
}
type ContentUploadMetadata {
csv: CsvMetadataType
xlsx: XlsxMetadataType
geojson: GeojsonMetadataType
}
type ContentUploadType {
id: String!
type: AnalysisReportUploadTypeEnum!
file: FileType!
metadata: ContentUploadMetadata
}
type ContentDataType {
id: String!
clientId: String!
data: GenericScalar
upload: ContentUploadType
}
type ReportContainerStyle {
border: BorderStyle
padding: PaddingStyle
background: BackgroundStyle
}
type HeadingConfigurationStyleType {
content: TextStyle
}
enum HeadingVariant {
H1
H2
H3
H4
}
type HeadingConfigurationType {
content: String
variant: HeadingVariant
style: HeadingConfigurationStyleType
}
enum ImageFit {
CONTAIN
COVER
FILL
NONE
SCALE_DOWN
}
type ImageConfigurationStyleType {
caption: TextStyle
fit: ImageFit
}
type ImageConfigurationType {
altText: String
caption: String
style: ImageConfigurationStyleType
}
type TextConfigurationStyleType {
content: TextStyle
}
type TextConfigurationType {
content: String
style: TextConfigurationStyleType
}
type UrlConfigurationType {
url: String
}
type KpiItemStyleType {
sourceContentStyle: TextStyle
subtitleContentStyle: TextStyle
titleContentStyle: TextStyle
valueContentStyle: TextStyle
}
type KpiItemConfigType {
abbreviateValue: String
clientId: String
color: String
date: String
source: String
sourceUrl: String
subtitle: String
title: String
value: Int
style: KpiItemStyleType
}
type KpiConfigurationType {
items: [KpiItemConfigType!]
sourceContentStyle: TextStyle
subtitleContentStyle: TextStyle
titleContentStyle: TextStyle
valueContentStyle: TextStyle
}
enum AnalysisReportBarChartDirectionEnum {
VERTICAL
HORIZONTAL
}
enum AnalysisReportBarChartTypeEnum {
SIDE_BY_SIDE
STACKED
}
enum AnalysisReportHorizontalAxisTypeEnum {
CATEGORICAL
NUMERIC
DATE
}
enum AnalysisReportAggregationTypeEnum {
COUNT
SUM
MEAN
MEDIAN
MIN
MAX
}
enum AnalysisReportLegendDotShapeEnum {
CIRCLE
TRIANGLE
SQUARE
DIAMOND
}
enum AnalysisReportLegendPositionEnum {
TOP
LEFT
BOTTOM
RIGHT
}
type ReportHorizontalAxisType {
field: String!
type: AnalysisReportHorizontalAxisTypeEnum!
}
type ReportLineHorizontalAxisType {
field: String!
}
type ReportVerticalAxisType {
field: String!
clientId: String
color: String
label: String
aggregationType: AnalysisReportAggregationTypeEnum!
}
type BarChartBarStyleType {
border: BorderStyle
}
type GridLineStyle {
lineColor: String
lineWidth: Int
lineOpacity: Int
}
type TickStyle {
lineColor: String
lineWidth: Int
lineOpacity: Int
}
type LegendType {
heading: TextStyle
label: TextStyle
position: AnalysisReportLegendPositionEnum
shape: AnalysisReportLegendDotShapeEnum
}
type BarChartStyleType {
bar: BarChartBarStyleType
horizontalAxisTickLabel: TextStyle
horizontalAxisTitle: TextStyle
horizontalGridLine: GridLineStyle
horizontalTick: TickStyle
legend: LegendType
subTitle: TextStyle
title: TextStyle
verticalAxisTickLabel: TextStyle
verticalAxisTitle: TextStyle
verticalGridLine: GridLineStyle
verticalTick: TickStyle
}
type BarChartConfigurationType {
direction: AnalysisReportBarChartDirectionEnum
horizontalAxis: ReportHorizontalAxisType
horizontalAxisLineVisible: Boolean
horizontalAxisTitle: String
horizontalGridLineVisible: Boolean
horizontalTickVisible: Boolean
legendHeading: String
sheet: String
subTitle: String
title: String
type: AnalysisReportBarChartTypeEnum!
verticalAxis: [ReportVerticalAxisType!]!
verticalAxisExtendMinimumValue: Int
verticalAxisExtendMaximumValue: Int
verticalAxisLineVisible: Boolean
verticalAxisTitle: String
verticalGridLineVisible: Boolean
verticalTickVisible: Boolean
horizontalTickLabelRotation: Int
style: BarChartStyleType
}
type LineChartConfigurationType {
horizontalAxis: ReportLineHorizontalAxisType
horizontalAxisLineVisible: Boolean
horizontalAxisTitle: String
horizontalGridLineVisible: Boolean
horizontalTickVisible: Boolean
legendHeading: String
sheet: String
subTitle: String
title: String
verticalAxis: [ReportVerticalAxisType!]!
verticalAxisExtendMinimumValue: Int
verticalAxisExtendMaximumValue: Int
verticalAxisLineVisible: Boolean
verticalAxisTitle: String
verticalGridLineVisible: Boolean
verticalTickVisible: Boolean
horizontalTickLabelRotation: Int
style: BarChartStyleType
}
type TimelineChartConfigurationType {
category: String
date: String
detail: String
sheet: String
source: String
sourceUrl: String
title: String
}
type MapStyleConfigurationType {
title: TextStyle
subTitle: TextStyle
}
type HeatMapLayerConfigType {
blur: Float
contentReferenceId: String!
fillPalette: String
radius: Float
scaleDataMax: Int
weightPropertyKey: String!
weighted: String
}
enum LineLayerStrokeTypeEnum {
DASH
SOLID
}
type LineStyleType {
dashSpacing: Int
stroke: String
strokeType: LineLayerStrokeTypeEnum
strokeWidth: Int
}
type LineLayerStyleType {
line: LineStyleType
}
type LineLayerConfigType {
contentReferenceId: String!
style: LineLayerStyleType
}
type MapboxLayerConfigType {
accessToken: String
mapboxStyle: String
}
type PolygonLayerConfigType {
contentReferenceId: String!
labelColumn: String!
}
enum ReportScaleTypeEnum {
FIXED
PROPORTIONAL
}
enum ReportScalingTechniqueEnum {
ABSOLUTE
FLANNERY
}
type SymbolLayerStyleType {
label: TextStyle
symbol: TextStyle
}
type SymbolLayerConfigType {
contentReferenceId: String!
labelPropertyKey: String!
scale: Int
scaleType: ReportScaleTypeEnum
scalingTechnique: ReportScalingTechniqueEnum
showLabels: Boolean
symbol: String!
style: SymbolLayerStyleType
}
type MapLayerConfigConfigurationType {
heatmapLayer: HeatMapLayerConfigType
lineLayer: LineLayerConfigType
mapboxLayer: MapboxLayerConfigType
polygonLayer: PolygonLayerConfigType
symbolLayer: SymbolLayerConfigType
}
type MapLayerConfigurationType {
clientId: String!
name: String
opacity: Int
order: Int
type: MapLayerTypeEnum!
visible: Boolean
layerConfig: MapLayerConfigConfigurationType
}
type MapConfigurationType {
title: String
subTitle: String
mapHeight: Int
maxZoom: Int
minZoom: Int
scaleBar: Boolean
showScale: Boolean
zoom: Int
enableZoomControls: Boolean
centerLatitude: Float
centerLongitude: Float
style: MapStyleConfigurationType
layers: [MapLayerConfigurationType!]
}
type ContentConfigurationType {
barChart: BarChartConfigurationType
lineChart: LineChartConfigurationType
timelineChart: TimelineChartConfigurationType
heading: HeadingConfigurationType
image: ImageConfigurationType
text: TextConfigurationType
url: UrlConfigurationType
kpi: KpiConfigurationType
map: MapConfigurationType
}
enum ReportContentEnum {
HEADING
IMAGE
TEXT
URL
}
type ReportContainer {
id: String!
clientId: String!
row: Int
column: Int
width: Int
height: Int
contentType: ReportContentEnum
style: ReportContainerStyle
contentData: [ContentDataType!]
contentConfiguration: ContentConfigurationType
isPublic: Boolean
modifiedAt: String
}
type GeneralHeadingContentStyle {
h1: TextStyle
h2: TextStyle
h3: TextStyle
h4: TextStyle
}
type BodyStyleConfig {
gap: Int
}
type GeneralConfiguration {
containerStyle: ReportContainerStyle
textContentStyle: TextConfigurationStyleType
imageContentStyle: ImageConfigurationStyleType
headingContentStyle: GeneralHeadingContentStyle
bodyStyle: BodyStyleConfig
}
type PublicReportDetails {
id: String!
analysis: String!
title: String!
subTitle: String
slug: String!
organizations: [Organization!]
containers: [ReportContainer!]
configuration: GeneralConfiguration
isPublic: Boolean
modifiedAt: String
}
type Query {
completeTimeseries(pathName: String!): CompleteTimeseries!
yearlySnapshot(pathName: String!): YearlySnapshot!
publicReportDetails(pathName: String!): PublicReportDetails!
}
directive @rest(
type: String!
path: String!
endpoint: String!
method: String
) on FIELD