-
Notifications
You must be signed in to change notification settings - Fork 3
/
plone-typedefs.graphql
976 lines (852 loc) · 20.9 KB
/
plone-typedefs.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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
### Type definitions saved at 2020-11-20T11:15:29.591Z ###
type PloneFile implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
created: Date @dateformat
creators: [String]
description: String
effective: Date @dateformat
exclude_from_nav: Boolean
is_folderish: Boolean
language: PloneFileLanguage
layout: String
modified: Date @dateformat
title: String
version: String
_path: String
_components: PloneFile_components
_id: String
_type: String
_parent: PloneFile_parent
_backlinks: [String]
file: File @link(by: "id", from: "file___NODE")
}
type PloneFileLanguage {
title: String
token: String
}
type PloneFile_components @derivedTypes {
actions: PloneFile_componentsActions
breadcrumbs: PloneFile_componentsBreadcrumbs
navigation: PloneFile_componentsNavigation
types: PloneFile_componentsTypes
workflow: PloneFile_componentsWorkflow
}
type PloneFile_componentsActions {
_path: String
_id: String
}
type PloneFile_componentsBreadcrumbs @derivedTypes {
items: [PloneFile_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneFilePloneFolderUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneFile_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
union PloneFilePloneFolderUnion = PloneFile | PloneFolder
type PloneFile_componentsNavigation @derivedTypes {
items: [PloneFile_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneFile_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
union PloneDocumentPloneFolderPloneSiteUnion = PloneDocument | PloneFolder | PloneSite
type PloneFile_componentsTypes {
_path: String
_id: String
}
type PloneFile_componentsWorkflow {
_path: String
_id: String
}
type PloneFile_parent {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type File implements Node @derivedTypes @dontInfer {
sourceInstanceName: String!
absolutePath: String!
relativePath: String!
extension: String!
size: Int!
prettySize: String!
modifiedTime: Date! @dateformat
accessTime: Date! @dateformat
changeTime: Date! @dateformat
birthTime: Date! @dateformat
root: String!
dir: String!
base: String!
ext: String!
name: String!
relativeDirectory: String!
dev: Int!
mode: Int!
nlink: Int!
uid: Int!
gid: Int!
rdev: Int!
ino: Float!
atimeMs: Float!
mtimeMs: Float!
ctimeMs: Float!
atime: Date! @dateformat
mtime: Date! @dateformat
ctime: Date! @dateformat
birthtime: Date @deprecated(reason: "Use `birthTime` instead")
birthtimeMs: Float @deprecated(reason: "Use `birthTime` instead")
blksize: Int
blocks: Int
url: String
content_type: String @proxy(from: "content-type")
download: String
filename: String
height: Int
scales: FileScales
width: Int
}
type FileScales @derivedTypes {
icon: FileScalesIcon
large: FileScalesLarge
listing: FileScalesListing
mini: FileScalesMini
preview: FileScalesPreview
thumb: FileScalesThumb
tile: FileScalesTile
}
type FileScalesIcon {
download: String
height: Int
width: Int
}
type FileScalesLarge {
download: String
height: Int
width: Int
}
type FileScalesListing {
download: String
height: Int
width: Int
}
type FileScalesMini {
download: String
height: Int
width: Int
}
type FileScalesPreview {
download: String
height: Int
width: Int
}
type FileScalesThumb {
download: String
height: Int
width: Int
}
type FileScalesTile {
download: String
height: Int
width: Int
}
type PloneEvent implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
attendees: [String]
changeNote: String
contact_name: String
created: Date @dateformat
creators: [String]
description: String
effective: Date @dateformat
end: Date @dateformat
event_url: String
exclude_from_nav: Boolean
is_folderish: Boolean
language: PloneEventLanguage
layout: String
location: String
modified: Date @dateformat
open_end: Boolean
review_state: String
start: Date @dateformat
subjects: [String]
text: PloneEventText
title: String
version: String
versioning_enabled: Boolean
whole_day: Boolean
_path: String
_components: PloneEvent_components
_id: String
_type: String
_parent: PloneEvent_parent
_backlinks: [String]
}
type PloneEventLanguage {
title: String
token: String
}
type PloneEventText {
content_type: String @proxy(from: "content-type")
data: String
encoding: String
react: String
}
type PloneEvent_components @derivedTypes {
actions: PloneEvent_componentsActions
breadcrumbs: PloneEvent_componentsBreadcrumbs
navigation: PloneEvent_componentsNavigation
types: PloneEvent_componentsTypes
workflow: PloneEvent_componentsWorkflow
}
type PloneEvent_componentsActions {
_path: String
_id: String
}
type PloneEvent_componentsBreadcrumbs @derivedTypes {
items: [PloneEvent_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneEventPloneFolderUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneEvent_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
union PloneEventPloneFolderUnion = PloneEvent | PloneFolder
type PloneEvent_componentsNavigation @derivedTypes {
items: [PloneEvent_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneEvent_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneEvent_componentsTypes {
_path: String
_id: String
}
type PloneEvent_componentsWorkflow {
_path: String
_id: String
}
type PloneEvent_parent {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneImage implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
created: Date @dateformat
creators: [String]
description: String
effective: Date @dateformat
exclude_from_nav: Boolean
is_folderish: Boolean
language: PloneImageLanguage
layout: String
modified: Date @dateformat
subjects: [String]
title: String
version: String
_path: String
_components: PloneImage_components
_id: String
_type: String
_parent: PloneImage_parent
_backlinks: [String]
image: File @link(by: "id", from: "image___NODE")
}
type PloneImageLanguage {
title: String
token: String
}
type PloneImage_components @derivedTypes {
actions: PloneImage_componentsActions
breadcrumbs: PloneImage_componentsBreadcrumbs
navigation: PloneImage_componentsNavigation
types: PloneImage_componentsTypes
workflow: PloneImage_componentsWorkflow
}
type PloneImage_componentsActions {
_path: String
_id: String
}
type PloneImage_componentsBreadcrumbs @derivedTypes {
items: [PloneImage_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneFolderPloneImageUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneImage_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
union PloneFolderPloneImageUnion = PloneFolder | PloneImage
type PloneImage_componentsNavigation @derivedTypes {
items: [PloneImage_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneImage_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneImage_componentsTypes {
_path: String
_id: String
}
type PloneImage_componentsWorkflow {
_path: String
_id: String
}
type PloneImage_parent {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneNewsItem implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
changeNote: String
created: Date @dateformat
creators: [String]
description: String
effective: Date @dateformat
exclude_from_nav: Boolean
is_folderish: Boolean
language: PloneNewsItemLanguage
layout: String
modified: Date @dateformat
review_state: String
text: PloneNewsItemText
title: String
version: String
versioning_enabled: Boolean
_path: String
_components: PloneNewsItem_components
_id: String
_type: String
_parent: PloneNewsItem_parent
_backlinks: [String]
image: File @link(by: "id", from: "image___NODE")
}
type PloneNewsItemLanguage {
title: String
token: String
}
type PloneNewsItemText {
content_type: String @proxy(from: "content-type")
data: String
encoding: String
react: String
}
type PloneNewsItem_components @derivedTypes {
actions: PloneNewsItem_componentsActions
breadcrumbs: PloneNewsItem_componentsBreadcrumbs
navigation: PloneNewsItem_componentsNavigation
types: PloneNewsItem_componentsTypes
workflow: PloneNewsItem_componentsWorkflow
}
type PloneNewsItem_componentsActions {
_path: String
_id: String
}
type PloneNewsItem_componentsBreadcrumbs @derivedTypes {
items: [PloneNewsItem_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneFolderPloneNewsItemUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneNewsItem_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
union PloneFolderPloneNewsItemUnion = PloneFolder | PloneNewsItem
type PloneNewsItem_componentsNavigation @derivedTypes {
items: [PloneNewsItem_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneNewsItem_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneNewsItem_componentsTypes {
_path: String
_id: String
}
type PloneNewsItem_componentsWorkflow {
_path: String
_id: String
}
type PloneNewsItem_parent {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneCollection implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
created: Date @dateformat
creators: [String]
customViewFields: [PloneCollectionCustomViewFields]
description: String
effective: Date @dateformat
exclude_from_nav: Boolean
is_folderish: Boolean
item_count: Int
items: [PloneCollectionItems]
items_total: Int
language: PloneCollectionLanguage
layout: String
limit: Int
modified: Date @dateformat
review_state: String
sort_on: String
sort_reversed: Boolean
subjects: [String]
text: PloneCollectionText
title: String
version: String
_path: String
_components: PloneCollection_components
_id: String
_type: String
nodes: [PloneEventPloneNewsItemUnion] @link(by: "id", from: "nodes___NODE")
_parent: PloneCollection_parent
_backlinks: [String]
}
type PloneCollectionCustomViewFields {
title: String
token: String
}
type PloneCollectionItems {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneCollectionLanguage {
title: String
token: String
}
type PloneCollectionText {
content_type: String @proxy(from: "content-type")
data: String
encoding: String
react: String
nodes: [PloneImage] @link(by: "id", from: "nodes___NODE")
}
type PloneCollection_components @derivedTypes {
actions: PloneCollection_componentsActions
breadcrumbs: PloneCollection_componentsBreadcrumbs
navigation: PloneCollection_componentsNavigation
types: PloneCollection_componentsTypes
workflow: PloneCollection_componentsWorkflow
}
type PloneCollection_componentsActions {
_path: String
_id: String
}
type PloneCollection_componentsBreadcrumbs @derivedTypes {
items: [PloneCollection_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneCollectionPloneFolderUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneCollection_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
union PloneCollectionPloneFolderUnion = PloneCollection | PloneFolder
type PloneCollection_componentsNavigation @derivedTypes {
items: [PloneCollection_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneCollection_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneCollection_componentsTypes {
_path: String
_id: String
}
type PloneCollection_componentsWorkflow {
_path: String
_id: String
}
union PloneEventPloneNewsItemUnion = PloneEvent | PloneNewsItem
type PloneCollection_parent {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneDocument implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
changeNote: String
created: Date @dateformat
creators: [String]
description: String
effective: Date @dateformat
exclude_from_nav: Boolean
is_folderish: Boolean
layout: String
modified: Date @dateformat
review_state: String
rights: String
table_of_contents: Boolean
text: PloneDocumentText
title: String
version: String
versioning_enabled: Boolean
_path: String
_components: PloneDocument_components
_id: String
_type: String
_parent: PloneDocument_parent
_backlinks: [String]
}
type PloneDocumentText {
content_type: String @proxy(from: "content-type")
data: String
encoding: String
react: String
nodes: [PloneDocumentPloneFilePloneImagePloneNewsItemUnion] @link(by: "id", from: "nodes___NODE")
}
union PloneDocumentPloneFilePloneImagePloneNewsItemUnion = PloneDocument | PloneFile | PloneImage | PloneNewsItem
type PloneDocument_components @derivedTypes {
actions: PloneDocument_componentsActions
breadcrumbs: PloneDocument_componentsBreadcrumbs
navigation: PloneDocument_componentsNavigation
types: PloneDocument_componentsTypes
workflow: PloneDocument_componentsWorkflow
}
type PloneDocument_componentsActions {
_path: String
_id: String
}
type PloneDocument_componentsBreadcrumbs @derivedTypes {
items: [PloneDocument_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneDocument_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
union PloneDocumentPloneFolderUnion = PloneDocument | PloneFolder
type PloneDocument_componentsNavigation @derivedTypes {
items: [PloneDocument_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneDocument_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneDocument_componentsTypes {
_path: String
_id: String
}
type PloneDocument_componentsWorkflow {
_path: String
_id: String
}
type PloneDocument_parent {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneLink implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
changeNote: String
created: Date @dateformat
creators: [String]
description: String
effective: Date @dateformat
exclude_from_nav: Boolean
is_folderish: Boolean
language: PloneLinkLanguage
layout: String
modified: Date @dateformat
remoteUrl: String
review_state: String
title: String
version: String
versioning_enabled: Boolean
_path: String
_components: PloneLink_components
_id: String
_type: String
_parent: PloneLink_parent
_backlinks: [String]
}
type PloneLinkLanguage {
title: String
token: String
}
type PloneLink_components @derivedTypes {
actions: PloneLink_componentsActions
breadcrumbs: PloneLink_componentsBreadcrumbs
navigation: PloneLink_componentsNavigation
types: PloneLink_componentsTypes
workflow: PloneLink_componentsWorkflow
}
type PloneLink_componentsActions {
_path: String
_id: String
}
type PloneLink_componentsBreadcrumbs @derivedTypes {
items: [PloneLink_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneFolderPloneLinkUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneLink_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
union PloneFolderPloneLinkUnion = PloneFolder | PloneLink
type PloneLink_componentsNavigation @derivedTypes {
items: [PloneLink_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneLink_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneLink_componentsTypes {
_path: String
_id: String
}
type PloneLink_componentsWorkflow {
_path: String
_id: String
}
type PloneLink_parent {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneFolder implements Node @derivedTypes @dontInfer {
UID: String
allow_discussion: Boolean
created: Date @dateformat
creators: [String]
description: String
effective: Date @dateformat
exclude_from_nav: Boolean
is_folderish: Boolean
items: [PloneFolderItems]
items_total: Int
layout: String
modified: Date @dateformat
nextPreviousEnabled: Boolean
review_state: String
rights: String
subjects: [String]
title: String
version: String
_path: String
_components: PloneFolder_components
_id: String
_type: String
nodes: [PloneCollectionPloneDocumentPloneEventPloneFilePloneFolderPloneImagePloneLinkPloneNewsItemUnion] @link(by: "id", from: "nodes___NODE")
_parent: PloneFolder_parent
_backlinks: [String]
}
type PloneFolderItems {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneFolder_components @derivedTypes {
actions: PloneFolder_componentsActions
breadcrumbs: PloneFolder_componentsBreadcrumbs
navigation: PloneFolder_componentsNavigation
types: PloneFolder_componentsTypes
workflow: PloneFolder_componentsWorkflow
}
type PloneFolder_componentsActions {
_path: String
_id: String
}
type PloneFolder_componentsBreadcrumbs @derivedTypes {
items: [PloneFolder_componentsBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneFolder] @link(by: "id", from: "nodes___NODE")
}
type PloneFolder_componentsBreadcrumbsItems {
title: String
_path: String
_id: String
}
type PloneFolder_componentsNavigation @derivedTypes {
items: [PloneFolder_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneFolder_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneFolder_componentsTypes {
_path: String
_id: String
}
type PloneFolder_componentsWorkflow {
_path: String
_id: String
}
union PloneCollectionPloneDocumentPloneEventPloneFilePloneFolderPloneImagePloneLinkPloneNewsItemUnion = PloneCollection | PloneDocument | PloneEvent | PloneFile | PloneFolder | PloneImage | PloneLink | PloneNewsItem
type PloneFolder_parent {
description: String
title: String
_path: String
_id: String
_type: String
review_state: String
}
type PloneNavigation implements Node @derivedTypes @dontInfer {
items: [PloneNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneNavigationItems {
description: String
title: String
_path: String
_id: String
}
type PloneBreadcrumbs implements Node @derivedTypes @dontInfer {
items: [PloneBreadcrumbsItems]
_path: String
_id: String
nodes: [PloneCollectionPloneDocumentPloneEventPloneFilePloneFolderPloneImagePloneLinkPloneNewsItemUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneBreadcrumbsItems {
title: String
_path: String
_id: String
}
type PloneSite implements Node @derivedTypes @dontInfer {
description: String
is_folderish: Boolean
items: [PloneSiteItems]
items_total: Int
title: String
_path: String
_components: PloneSite_components
_id: String
_type: String
nodes: [PloneDocumentPloneFolderUnion] @link(by: "id", from: "nodes___NODE")
_backlinks: [String]
}
type PloneSiteItems {
description: String
review_state: String
title: String
_path: String
_id: String
_type: String
}
type PloneSite_components @derivedTypes {
actions: PloneSite_componentsActions
breadcrumbs: PloneSite_componentsBreadcrumbs
navigation: PloneSite_componentsNavigation
}
type PloneSite_componentsActions {
_path: String
_id: String
}
type PloneSite_componentsBreadcrumbs {
_path: String
_id: String
}
type PloneSite_componentsNavigation @derivedTypes {
items: [PloneSite_componentsNavigationItems]
_path: String
_id: String
nodes: [PloneDocumentPloneFolderPloneSiteUnion] @link(by: "id", from: "nodes___NODE")
}
type PloneSite_componentsNavigationItems {
description: String
title: String
_path: String
_id: String
}