-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgraphql-types.d.ts
8624 lines (7411 loc) · 245 KB
/
graphql-types.d.ts
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
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* tslint:disable */
/* An object with an id, parent, and children */
export interface Node {
id: string; /* The id of the node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
}
export interface RootQueryType {
allSitePage?: SitePageConnection; /* Connection to all SitePage nodes */
allSitePlugin?: SitePluginConnection; /* Connection to all SitePlugin nodes */
allFile?: FileConnection; /* Connection to all File nodes */
allImageSharp?: ImageSharpConnection; /* Connection to all ImageSharp nodes */
allWordpressWpMedia?: wordpress__wp_mediaConnection; /* Connection to all wordpress__wp_media nodes */
allWordpressWpTrabajos?: wordpress__wp_trabajosConnection; /* Connection to all wordpress__wp_trabajos nodes */
allWordpressWpTypes?: wordpress__wp_typesConnection; /* Connection to all wordpress__wp_types nodes */
allWordpressWpStatuses?: wordpress__wp_statusesConnection; /* Connection to all wordpress__wp_statuses nodes */
allWordpressWpTaxonomies?: wordpress__wp_taxonomiesConnection; /* Connection to all wordpress__wp_taxonomies nodes */
allWordpressCategory?: wordpress__CATEGORYConnection; /* Connection to all wordpress__CATEGORY nodes */
allWordpressTag?: wordpress__TAGConnection; /* Connection to all wordpress__TAG nodes */
allWordpressWpClientes?: wordpress__wp_clientesConnection; /* Connection to all wordpress__wp_clientes nodes */
allWordpressWpUsers?: wordpress__wp_usersConnection; /* Connection to all wordpress__wp_users nodes */
sitePage?: SitePage;
sitePlugin?: SitePlugin;
site?: Site;
file?: File;
imageSharp?: ImageSharp;
wordpressWpMedia?: wordpress__wp_media;
wordpressWpTrabajos?: wordpress__wp_trabajos;
wordpressWpTypes?: wordpress__wp_types;
wordpressWpStatuses?: wordpress__wp_statuses;
wordpressWpTaxonomies?: wordpress__wp_taxonomies;
wordpressCategory?: wordpress__CATEGORY;
wordpressTag?: wordpress__TAG;
wordpressWpClientes?: wordpress__wp_clientes;
wordpressWpUsers?: wordpress__wp_users;
}
/* A connection to a list of items. */
export interface SitePageConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: SitePageEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: sitePageGroupConnectionConnection[];
}
/* Information about pagination in a connection. */
export interface PageInfo {
hasNextPage: boolean; /* When paginating, are there more items? */
}
/* An edge in a connection. */
export interface SitePageEdge {
node?: SitePage; /* The item at the end of the edge */
next?: SitePage; /* The next edge in the connection */
previous?: SitePage; /* The previous edge in the connection */
}
/* Node of type SitePage */
export interface SitePage extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
component?: string;
path?: string;
componentChunkName?: string;
layout?: string;
jsonName?: string;
internalComponentName?: string;
updatedAt?: number;
context?: context;
pluginCreator?: SitePlugin;
pluginCreatorId?: string;
componentPath?: string;
internal?: internal_15;
}
export interface context {
id?: string;
}
/* Node of type SitePlugin */
export interface SitePlugin extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
resolve?: string;
name?: string;
version?: string;
pluginOptions?: pluginOptions_2;
nodeAPIs?: string[];
pluginFilepath?: string;
packageJson?: packageJson_2;
internal?: internal_16;
}
export interface pluginOptions_2 {
baseUrl?: string;
protocol?: string;
hostingWPCOM?: boolean;
useACF?: boolean;
verboseOutput?: boolean;
}
export interface packageJson_2 {
name?: string;
description?: string;
version?: string;
main?: string;
keywords?: string[];
license?: string;
dependencies?: dependencies_2[];
devDependencies?: devDependencies_2[];
}
export interface dependencies_2 {
name?: string;
version?: string;
}
export interface devDependencies_2 {
name?: string;
version?: string;
}
export interface internal_16 {
contentDigest?: string;
type?: string;
owner?: string;
}
export interface internal_15 {
type?: string;
contentDigest?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface sitePageGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: sitePageGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface sitePageGroupConnectionEdge {
node?: SitePage; /* The item at the end of the edge */
next?: SitePage; /* The next edge in the connection */
previous?: SitePage; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface SitePluginConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: SitePluginEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: sitePluginGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface SitePluginEdge {
node?: SitePlugin; /* The item at the end of the edge */
next?: SitePlugin; /* The next edge in the connection */
previous?: SitePlugin; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface sitePluginGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: sitePluginGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface sitePluginGroupConnectionEdge {
node?: SitePlugin; /* The item at the end of the edge */
next?: SitePlugin; /* The next edge in the connection */
previous?: SitePlugin; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface FileConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: FileEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: fileGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface FileEdge {
node?: File; /* The item at the end of the edge */
next?: File; /* The next edge in the connection */
previous?: File; /* The previous edge in the connection */
}
/* Node of type File */
export interface File extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
childImageSharp?: ImageSharp; /* The child of this node of type imageSharp */
internal?: internal_17;
sourceInstanceName?: string;
absolutePath?: string;
relativePath?: string;
extension?: string;
size?: string;
prettySize?: string;
modifiedTime?: string;
accessTime?: string;
changeTime?: string;
birthTime?: string;
root?: string;
dir?: string;
base?: string;
ext?: string;
name?: string;
relativeDirectory?: string;
dev?: number;
mode?: number;
nlink?: number;
uid?: number;
gid?: number;
rdev?: number;
ino?: number;
atimeMs?: number;
mtimeMs?: number;
ctimeMs?: number;
birthtimeMs?: number;
atime?: string;
mtime?: string;
ctime?: string;
birthtime?: string;
}
/* Node of type ImageSharp */
export interface ImageSharp extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
internal?: internal_18;
original?: ImageSharpOriginal;
resolutions?: ImageSharpResolutions;
sizes?: ImageSharpSizes;
responsiveResolution?: ImageSharpResponsiveResolution;
responsiveSizes?: ImageSharpResponsiveSizes;
resize?: ImageSharpResize;
}
export interface internal_18 {
contentDigest?: string;
type?: string;
owner?: string;
}
export interface ImageSharpOriginal {
width?: number;
height?: number;
src?: string;
}
export interface ImageSharpResolutions {
base64?: string;
tracedSVG?: string;
aspectRatio?: number;
width?: number;
height?: number;
src?: string;
srcSet?: string;
srcWebp?: string;
srcSetWebp?: string;
originalName?: string;
}
export interface ImageSharpSizes {
base64?: string;
tracedSVG?: string;
aspectRatio?: number;
src?: string;
srcSet?: string;
srcWebp?: string;
srcSetWebp?: string;
sizes?: string;
originalImg?: string;
originalName?: string;
}
export interface ImageSharpResponsiveResolution {
base64?: string;
aspectRatio?: number;
width?: number;
height?: number;
src?: string;
srcSet?: string;
originalName?: string;
}
export interface ImageSharpResponsiveSizes {
base64?: string;
aspectRatio?: number;
src?: string;
srcSet?: string;
sizes?: string;
originalImg?: string;
originalName?: string;
}
export interface ImageSharpResize {
src?: string;
tracedSVG?: string;
width?: number;
height?: number;
aspectRatio?: number;
originalName?: string;
}
export interface internal_17 {
contentDigest?: string;
mediaType?: string;
type?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface fileGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: fileGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface fileGroupConnectionEdge {
node?: File; /* The item at the end of the edge */
next?: File; /* The next edge in the connection */
previous?: File; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface ImageSharpConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: ImageSharpEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: imageSharpGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface ImageSharpEdge {
node?: ImageSharp; /* The item at the end of the edge */
next?: ImageSharp; /* The next edge in the connection */
previous?: ImageSharp; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface imageSharpGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: imageSharpGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface imageSharpGroupConnectionEdge {
node?: ImageSharp; /* The item at the end of the edge */
next?: ImageSharp; /* The next edge in the connection */
previous?: ImageSharp; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface wordpress__wp_mediaConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpress__wp_mediaEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: wordpressWpMediaGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface wordpress__wp_mediaEdge {
node?: wordpress__wp_media; /* The item at the end of the edge */
next?: wordpress__wp_media; /* The next edge in the connection */
previous?: wordpress__wp_media; /* The previous edge in the connection */
}
/* Node of type wordpress__wp_media */
export interface wordpress__wp_media extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
wordpress_id?: number;
date?: string;
guid?: string;
modified?: string;
slug?: string;
status?: string;
type?: string;
link?: string;
title?: string;
comment_status?: string;
ping_status?: string;
template?: string;
description?: string;
caption?: string;
alt_text?: string;
media_type?: string;
mime_type?: string;
media_details?: mediaDetails_2;
post?: number;
source_url?: string;
_links?: links_10;
author?: wordpress__wp_users;
localFile?: File;
internal?: internal_19;
}
export interface mediaDetails_2 {
width?: string;
height?: string;
file?: string;
image_meta?: imageMeta_2;
}
export interface imageMeta_2 {
aperture?: string;
credit?: string;
camera?: string;
caption?: string;
created_timestamp?: string;
copyright?: string;
focal_length?: string;
iso?: string;
shutter_speed?: string;
title?: string;
orientation?: string;
keywords?: string[];
}
export interface links_10 {
self?: self_7[];
collection?: collection_9[];
about?: about_6[];
author?: author_2[];
replies?: replies_2[];
}
export interface self_7 {
href?: string;
}
export interface collection_9 {
href?: string;
}
export interface about_6 {
href?: string;
}
export interface author_2 {
embeddable?: boolean;
href?: string;
}
export interface replies_2 {
embeddable?: boolean;
href?: string;
}
/* Node of type wordpress__wp_users */
export interface wordpress__wp_users extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
wordpress_id?: number;
name?: string;
url?: string;
description?: string;
link?: string;
slug?: string;
_links?: links_11;
all_authored_entities?: wordpress__wp_media[];
authored_wordpress__wp_media?: wordpress__wp_media[];
internal?: internal_20;
}
export interface links_11 {
self?: self_8[];
collection?: collection_10[];
}
export interface self_8 {
href?: string;
}
export interface collection_10 {
href?: string;
}
export interface internal_20 {
type?: string;
contentDigest?: string;
owner?: string;
}
export interface internal_19 {
type?: string;
contentDigest?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface wordpressWpMediaGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpressWpMediaGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface wordpressWpMediaGroupConnectionEdge {
node?: wordpress__wp_media; /* The item at the end of the edge */
next?: wordpress__wp_media; /* The next edge in the connection */
previous?: wordpress__wp_media; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface wordpress__wp_trabajosConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpress__wp_trabajosEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: wordpressWpTrabajosGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface wordpress__wp_trabajosEdge {
node?: wordpress__wp_trabajos; /* The item at the end of the edge */
next?: wordpress__wp_trabajos; /* The next edge in the connection */
previous?: wordpress__wp_trabajos; /* The previous edge in the connection */
}
/* Node of type wordpress__wp_trabajos */
export interface wordpress__wp_trabajos extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
wordpress_id?: number;
date?: string;
guid?: string;
modified?: string;
slug?: string;
status?: string;
type?: string;
link?: string;
title?: string;
template?: string;
tags?: number[];
clientes?: number[];
acf?: acf_2;
_links?: links_12;
internal?: internal_21;
}
export interface acf_2 {
cliente?: cliente_2;
campana?: string;
tipo?: tipo_2[];
descripcion?: string;
imagen?: imagen_2;
piezas?: piezas_2[];
}
export interface cliente_2 {
term_id?: number;
name?: string;
slug?: string;
term_group?: number;
term_taxonomy_id?: number;
taxonomy?: string;
description?: string;
wordpress_parent?: number;
count?: number;
filter?: string;
}
export interface tipo_2 {
term_id?: number;
name?: string;
slug?: string;
term_group?: number;
term_taxonomy_id?: number;
taxonomy?: string;
description?: string;
wordpress_parent?: number;
count?: number;
filter?: string;
}
export interface imagen_2 {
wordpress_id?: number;
title?: string;
filename?: string;
url?: string;
alt?: string;
author?: string;
description?: string;
caption?: string;
name?: string;
date?: string;
modified?: string;
mime_type?: string;
type?: string;
icon?: string;
width?: number;
height?: number;
sizes?: sizes_3;
}
export interface sizes_3 {
thumbnail?: string;
thumbnail_width?: number;
thumbnail_height?: number;
medium?: string;
medium_width?: number;
medium_height?: number;
medium_large?: string;
medium_large_width?: number;
medium_large_height?: number;
large?: string;
large_width?: number;
large_height?: number;
}
export interface piezas_2 {
url?: string;
imagen_de_la_pieza?: imagenDeLaPieza_2;
tipo_de_pieza?: string;
campana?: string;
descripcion?: string;
}
export interface imagenDeLaPieza_2 {
wordpress_id?: number;
title?: string;
filename?: string;
url?: string;
alt?: string;
author?: string;
description?: string;
caption?: string;
name?: string;
date?: string;
modified?: string;
mime_type?: string;
type?: string;
icon?: string;
width?: string;
height?: string;
sizes?: sizes_4;
}
export interface sizes_4 {
thumbnail?: string;
thumbnail_width?: number;
thumbnail_height?: number;
medium?: string;
medium_width?: number;
medium_height?: number;
medium_large?: string;
medium_large_width?: number;
medium_large_height?: string;
large?: string;
large_width?: number;
large_height?: string;
}
export interface links_12 {
self?: self_9[];
collection?: collection_11[];
about?: about_7[];
wp_attachment?: wpAttachment_2[];
wp_term?: wpTerm_2[];
curies?: curies_7[];
}
export interface self_9 {
href?: string;
}
export interface collection_11 {
href?: string;
}
export interface about_7 {
href?: string;
}
export interface wpAttachment_2 {
href?: string;
}
export interface wpTerm_2 {
taxonomy?: string;
embeddable?: boolean;
href?: string;
}
export interface curies_7 {
name?: string;
href?: string;
templated?: boolean;
}
export interface internal_21 {
type?: string;
contentDigest?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface wordpressWpTrabajosGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpressWpTrabajosGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface wordpressWpTrabajosGroupConnectionEdge {
node?: wordpress__wp_trabajos; /* The item at the end of the edge */
next?: wordpress__wp_trabajos; /* The next edge in the connection */
previous?: wordpress__wp_trabajos; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface wordpress__wp_typesConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpress__wp_typesEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: wordpressWpTypesGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface wordpress__wp_typesEdge {
node?: wordpress__wp_types; /* The item at the end of the edge */
next?: wordpress__wp_types; /* The next edge in the connection */
previous?: wordpress__wp_types; /* The previous edge in the connection */
}
/* Node of type wordpress__wp_types */
export interface wordpress__wp_types extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
wordpress_id?: string;
description?: string;
hierarchical?: boolean;
name?: string;
slug?: string;
taxonomies?: string[];
rest_base?: string;
_links?: links_13;
internal?: internal_22;
}
export interface links_13 {
collection?: collection_12[];
wp_items?: wpItems_3[];
curies?: curies_8[];
}
export interface collection_12 {
href?: string;
}
export interface wpItems_3 {
href?: string;
}
export interface curies_8 {
name?: string;
href?: string;
templated?: boolean;
}
export interface internal_22 {
type?: string;
contentDigest?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface wordpressWpTypesGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpressWpTypesGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface wordpressWpTypesGroupConnectionEdge {
node?: wordpress__wp_types; /* The item at the end of the edge */
next?: wordpress__wp_types; /* The next edge in the connection */
previous?: wordpress__wp_types; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface wordpress__wp_statusesConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpress__wp_statusesEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: wordpressWpStatusesGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface wordpress__wp_statusesEdge {
node?: wordpress__wp_statuses; /* The item at the end of the edge */
next?: wordpress__wp_statuses; /* The next edge in the connection */
previous?: wordpress__wp_statuses; /* The previous edge in the connection */
}
/* Node of type wordpress__wp_statuses */
export interface wordpress__wp_statuses extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
wordpress_id?: string;
name?: string;
public?: boolean;
queryable?: boolean;
slug?: string;
_links?: links_14;
internal?: internal_23;
}
export interface links_14 {
archives?: archives_2[];
}
export interface archives_2 {
href?: string;
}
export interface internal_23 {
type?: string;
contentDigest?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface wordpressWpStatusesGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpressWpStatusesGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface wordpressWpStatusesGroupConnectionEdge {
node?: wordpress__wp_statuses; /* The item at the end of the edge */
next?: wordpress__wp_statuses; /* The next edge in the connection */
previous?: wordpress__wp_statuses; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface wordpress__wp_taxonomiesConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpress__wp_taxonomiesEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: wordpressWpTaxonomiesGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface wordpress__wp_taxonomiesEdge {
node?: wordpress__wp_taxonomies; /* The item at the end of the edge */
next?: wordpress__wp_taxonomies; /* The next edge in the connection */
previous?: wordpress__wp_taxonomies; /* The previous edge in the connection */
}
/* Node of type wordpress__wp_taxonomies */
export interface wordpress__wp_taxonomies extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
wordpress_id?: string;
name?: string;
slug?: string;
description?: string;
types?: string[];
hierarchical?: boolean;
rest_base?: string;
_links?: links_15;
internal?: internal_24;
}
export interface links_15 {
collection?: collection_13[];
wp_items?: wpItems_4[];
curies?: curies_9[];
}
export interface collection_13 {
href?: string;
}
export interface wpItems_4 {
href?: string;
}
export interface curies_9 {
name?: string;
href?: string;
templated?: boolean;
}
export interface internal_24 {
type?: string;
contentDigest?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface wordpressWpTaxonomiesGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpressWpTaxonomiesGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface wordpressWpTaxonomiesGroupConnectionEdge {
node?: wordpress__wp_taxonomies; /* The item at the end of the edge */
next?: wordpress__wp_taxonomies; /* The next edge in the connection */
previous?: wordpress__wp_taxonomies; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface wordpress__CATEGORYConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpress__CATEGORYEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: wordpressCategoryGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface wordpress__CATEGORYEdge {
node?: wordpress__CATEGORY; /* The item at the end of the edge */
next?: wordpress__CATEGORY; /* The next edge in the connection */
previous?: wordpress__CATEGORY; /* The previous edge in the connection */
}
/* Node of type wordpress__CATEGORY */
export interface wordpress__CATEGORY extends Node {
id: string; /* The id of this node. */
parent?: Node; /* The parent of this node. */
children?: Node[]; /* The children of this node. */
wordpress_id?: number;
count?: number;
description?: string;
link?: string;
name?: string;
slug?: string;
wordpress_parent?: number;
_links?: links_16;
taxonomy?: wordpress__wp_taxonomies;
internal?: internal_25;
}
export interface links_16 {
self?: self_10[];
collection?: collection_14[];
about?: about_8[];
wp_post_type?: wpPostType_4[];
curies?: curies_10[];
}
export interface self_10 {
href?: string;
}
export interface collection_14 {
href?: string;
}
export interface about_8 {
href?: string;
}
export interface wpPostType_4 {
href?: string;
}
export interface curies_10 {
name?: string;
href?: string;
templated?: boolean;
}
export interface internal_25 {
type?: string;
contentDigest?: string;
owner?: string;
}
/* A connection to a list of items. */
export interface wordpressCategoryGroupConnectionConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpressCategoryGroupConnectionEdge[]; /* A list of edges. */
field?: string;
fieldValue?: string;
totalCount?: number;
}
/* An edge in a connection. */
export interface wordpressCategoryGroupConnectionEdge {
node?: wordpress__CATEGORY; /* The item at the end of the edge */
next?: wordpress__CATEGORY; /* The next edge in the connection */
previous?: wordpress__CATEGORY; /* The previous edge in the connection */
}
/* A connection to a list of items. */
export interface wordpress__TAGConnection {
pageInfo: PageInfo; /* Information to aid in pagination. */
edges?: wordpress__TAGEdge[]; /* A list of edges. */
totalCount?: number;
distinct?: string[];
group?: wordpressTagGroupConnectionConnection[];
}
/* An edge in a connection. */
export interface wordpress__TAGEdge {
node?: wordpress__TAG; /* The item at the end of the edge */
next?: wordpress__TAG; /* The next edge in the connection */
previous?: wordpress__TAG; /* The previous edge in the connection */
}
/* Node of type wordpress__TAG */