-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
3035 lines (2249 loc) · 62.6 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
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
"""Represents `true` or `false` values."""
scalar BooleanType
type CollectionMetadata {
count: IntType!
}
enum ColorBucketType {
red
orange
pink
cyan
purple
blue
yellow
green
brown
grey
white
black
}
type ColorField {
alpha: IntType!
blue: IntType!
cssRgb: String!
green: IntType!
hex: String!
red: IntType!
}
scalar CustomData
"""A ISO 8601 compliant datetime value"""
scalar DateTime
enum FaviconType {
icon
appleTouchIcon
msApplication
}
type FileField implements FileFieldInterface {
_createdAt: DateTime!
"""
The DatoCMS URL where you can edit this entity. To use this field, you need to set a X-Base-Editing-Url header in the request
"""
_editingUrl: String
_updatedAt: DateTime!
alt(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): String
author: String
basename: String!
blurUpThumb(
"""
Controls the "punch" value (~contrast) of the blurhash decoding algorithm (defaults to 1.0)
"""
punch: Float! = 1
"""Maximum image dimension (defaults to 24px)"""
size: Int! = 24
"""Image quality (defaults to 70%)"""
quality: Int! = 70
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String
blurhash: String
colors: [ColorField!]!
copyright: String
customData(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): CustomData!
exifInfo: CustomData!
filename: String!
focalPoint(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): focalPoint
format: String!
height: IntType
id: UploadId!
md5: String!
mimeType: String!
notes: String
responsiveImage(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
"""Specify a custom `sizes` attribute for the image"""
sizes: String
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): ResponsiveImage
size: IntType!
smartTags: [String!]!
tags: [String!]!
thumbhash: String
title(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): String
url(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String!
video: UploadVideoField
width: IntType
}
interface FileFieldInterface {
_createdAt: DateTime!
"""
The DatoCMS URL where you can edit this entity. To use this field, you need to set a X-Base-Editing-Url header in the request
"""
_editingUrl: String
_updatedAt: DateTime!
alt(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): String
author: String
basename: String!
blurUpThumb(
"""
Controls the "punch" value (~contrast) of the blurhash decoding algorithm (defaults to 1.0)
"""
punch: Float! = 1
"""Maximum image dimension (defaults to 24px)"""
size: Int! = 24
"""Image quality (defaults to 70%)"""
quality: Int! = 70
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String
blurhash: String
colors: [ColorField!]!
copyright: String
customData(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): CustomData!
exifInfo: CustomData!
filename: String!
focalPoint(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): focalPoint
format: String!
height: IntType
id: UploadId!
md5: String!
mimeType: String!
notes: String
responsiveImage(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
"""Specify a custom `sizes` attribute for the image"""
sizes: String
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): ResponsiveImage
size: IntType!
smartTags: [String!]!
tags: [String!]!
thumbhash: String
title(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): String
url(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String!
video: UploadVideoField
width: IntType
}
"""
Represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).
"""
scalar FloatType
type GlobalSeoField {
facebookPageUrl: String
fallbackSeo: SeoField
siteName: String
titleSuffix: String
twitterAccount: String
}
"""Block of type 🌅 Image (image_block)"""
type ImageBlockRecord implements RecordInterface {
_createdAt: DateTime!
"""Editing URL"""
_editingUrl: String
_firstPublishedAt: DateTime
_isValid: BooleanType!
_modelApiKey: String!
_publicationScheduledAt: DateTime
_publishedAt: DateTime
"""Generates SEO and Social card meta tags to be used in your frontend"""
_seoMetaTags(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): [Tag!]!
_status: ItemStatus!
_unpublishingScheduledAt: DateTime
_updatedAt: DateTime!
asset: ImageFileField!
id: ItemId!
}
type ImageFileField implements FileFieldInterface {
_createdAt: DateTime!
"""
The DatoCMS URL where you can edit this entity. To use this field, you need to set a X-Base-Editing-Url header in the request
"""
_editingUrl: String
_updatedAt: DateTime!
alt(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): String
author: String
basename: String!
blurUpThumb(
"""
Controls the "punch" value (~contrast) of the blurhash decoding algorithm (defaults to 1.0)
"""
punch: Float! = 1
"""Maximum image dimension (defaults to 24px)"""
size: Int! = 24
"""Image quality (defaults to 70%)"""
quality: Int! = 70
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String
blurhash: String
colors: [ColorField!]!
copyright: String
customData(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): CustomData!
exifInfo: CustomData!
filename: String!
focalPoint(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): focalPoint!
format: String!
height: IntType!
id: UploadId!
md5: String!
mimeType: String!
notes: String
responsiveImage(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
"""Specify a custom `sizes` attribute for the image"""
sizes: String
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): ResponsiveImage!
size: IntType!
smartTags: [String!]!
tags: [String!]!
thumbhash: String
title(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
): String
url(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String!
video: UploadVideoField
width: IntType!
}
"""Block of type 🎠 Image Gallery (image_gallery_block)"""
type ImageGalleryBlockRecord implements RecordInterface {
_createdAt: DateTime!
"""Editing URL"""
_editingUrl: String
_firstPublishedAt: DateTime
_isValid: BooleanType!
_modelApiKey: String!
_publicationScheduledAt: DateTime
_publishedAt: DateTime
"""Generates SEO and Social card meta tags to be used in your frontend"""
_seoMetaTags(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): [Tag!]!
_status: ItemStatus!
_unpublishingScheduledAt: DateTime
_updatedAt: DateTime!
assets: [ImageFileField!]!
id: ItemId!
}
input ImgixParams {
"""
Aspect Ratio
Specifies an aspect ratio to maintain when resizing and cropping the image
Depends on: `fit=crop`
[Open Imgix reference »](https://docs.imgix.com/apis/url/size/ar)
"""
ar: String
"""
Automatic
Applies automatic enhancements to images.
[Open Imgix reference »](https://docs.imgix.com/apis/url/auto)
"""
auto: [ImgixParamsAuto!]
"""
Background Removal Fallback
Overrides default fallback behavior for bg-remove failures.
[Open Imgix reference »](https://docs.imgix.com/apis/rendering/background/bg-remove)
"""
bgRemoveFallback: BooleanType
"""
Background Removal
Removes background from image.
[Open Imgix reference »](https://docs.imgix.com/apis/rendering/background/bg-remove)
"""
bgRemove: BooleanType
"""
Background Removal Fallback
Overrides default fallback behavior for bg-replace failures.
[Open Imgix reference »](https://docs.imgix.com/apis/rendering/background/bg-replace)
"""
bgReplaceFallback: BooleanType
"""
Background Replacement Negative Prompt
Provides a negative text suggestion for background replacement.
[Open Imgix reference »](https://docs.imgix.com/apis/rendering/background/bg-replace-neg-prompt)
"""
bgReplaceNegPrompt: String
"""
Background Replacement
Replaces background from image using a string based prompt.
[Open Imgix reference »](https://docs.imgix.com/apis/rendering/background/bg-replace)
"""
bgReplace: String
"""
Background Color
Colors the background of padded and partially-transparent images.
[Open Imgix reference »](https://docs.imgix.com/apis/url/bg)
"""
bg: String
"""
Blend Align
Changes the blend alignment relative to the parent image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-align)
"""
blendAlign: [ImgixParamsBlendAlign!]
"""
Blend Alpha
Changes the alpha of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-alpha)
"""
blendAlpha: IntType
"""
Blend Color
Specifies a color to use when applying the blend.
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-color)
"""
blendColor: String
"""
Blend Crop
Specifies the type of crop for blend images.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-crop)
"""
blendCrop: [ImgixParamsBlendCrop!]
"""
Blend Fit
Specifies the fit mode for blend images.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-fit)
"""
blendFit: ImgixParamsBlendFit
"""
Blend Height
Adjusts the height of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-h)
"""
blendH: FloatType
"""
Blend Mode
Sets the blend mode for a blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-mode)
"""
blendMode: ImgixParamsBlendMode
"""
Blend Padding
Applies padding to the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-pad)
"""
blendPad: IntType
"""
Blend Size
Adjusts the size of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-size)
"""
blendSize: ImgixParamsBlendSize
"""
Blend Width
Adjusts the width of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-w)
"""
blendW: FloatType
"""
Blend X Position
Adjusts the x-offset of the blend image relative to its parent.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-x)
"""
blendX: IntType
"""
Blend Y Position
Adjusts the y-offset of the blend image relative to its parent.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-y)
"""
blendY: IntType
"""
Blend
Specifies the location of the blend image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend)
"""
blend: String
"""
Gaussian Blur
Applies a gaussian blur to an image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/blur)
"""
blur: IntType
"""
Border Bottom
Sets bottom border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-bottom)
"""
borderBottom: IntType
"""
Border Left
Sets left border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-left)
"""
borderLeft: IntType
"""
Inner Border Radius
Sets the inner radius of the image's border in pixels.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-radius-inner)
"""
borderRadiusInner: String
"""
Outer Border Radius
Sets the outer radius of the image's border in pixels.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-radius)
"""
borderRadius: String
"""
Border Right
Sets right border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-right)
"""
borderRight: IntType
"""
Border Top
Sets top border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-top)
"""
borderTop: IntType
"""
Border Size & Color
Applies a border to an image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border)
"""
border: String
"""
Brightness
Adjusts the brightness of the source image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/bri)
"""
bri: IntType
"""
Client Hints
Sets one or more Client-Hints headers
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/ch)
"""
ch: [ImgixParamsCh!]
"""
Chroma Subsampling
Specifies the output chroma subsampling rate.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/chromasub)
"""
chromasub: IntType
"""
Color Quantization
Limits the number of unique colors in an image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/colorquant)
"""
colorquant: IntType
"""
Palette Color Count
Specifies how many colors to include in a palette-extraction response.
Depends on: `palette`
[Open Imgix reference »](https://docs.imgix.com/apis/url/color-palette/colors)
"""
colors: IntType
"""
Contrast
Adjusts the contrast of the source image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/con)
"""
con: IntType
"""
Mask Corner Radius
Specifies the radius value for a rounded corner mask.
Depends on: `mask=corners`
[Open Imgix reference »](https://docs.imgix.com/apis/url/mask/corner-radius)
"""
cornerRadius: String
"""
Crop Mode
Specifies how to crop an image.
Depends on: `fit=crop`
[Open Imgix reference »](https://docs.imgix.com/apis/url/size/crop)
"""
crop: [ImgixParamsCrop!]
"""
Color Space
Specifies the color space of the output image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/cs)
"""
cs: ImgixParamsCs
"""
Download
Forces a URL to use send-file in its response.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/dl)
"""
dl: String
"""
Dots Per Inch
Sets the DPI value in the EXIF header.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/dpi)
"""
dpi: IntType
"""
Device Pixel Ratio
Adjusts the device-pixel ratio of the output image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/dpr)
"""
dpr: FloatType
"""
Duotone Alpha
Changes the alpha of the duotone effect atop the source image.
Depends on: `duotone`
[Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/duotone-alpha)
"""
duotoneAlpha: IntType
"""
Duotone
Applies a duotone effect to the source image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/duotone)
"""
duotone: String
"""
Exposure
Adjusts the exposure of the output image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/exp)
"""
exp: IntType
"""
Url Expiration Timestamp
A Unix timestamp specifying a UTC time. Requests made to this URL after that time will output a 404 status code.
[Open Imgix reference »](https://docs.imgix.com/apis/url/expires)
"""
expires: IntType
"""
Face Index
Selects a face to crop to.
Depends on: `fit=facearea`
[Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/faceindex)
"""
faceindex: IntType
"""
Face Padding
Adjusts padding around a selected face.
Depends on: `fit=facearea`
[Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/facepad)
"""
facepad: FloatType
"""
Json Face Data
Specifies that face data should be included in output when combined with `fm=json`.
Depends on: `fm=json`
[Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/faces)
"""
faces: IntType
"""
Fill Color
Sets the fill color for images with additional space created by the fit setting
Depends on: `fill=solid`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-color)
"""
fillColor: String
"""
Fill Generative Fallback
Sets the fallback behavior for generative fill.
Depends on: `fit=fill`, `fill=gen`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gen-fallback)
"""
fillGenFallback: BooleanType
"""
Fill Generative Negative Prompt
Provides a negative text suggestion to the generative fill parameter. Used to reduce the probability of a subject, detail, or object appearing in generative output.
Depends on: `fit=fill`, `fill=gen`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gen-neg-prompt)
"""
fillGenNegPrompt: String
"""
Fill Generative Position
Sets the position of the Origin Image in relation to the generative fill.
Depends on: `fit=fill`, `fill=gen`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gen-pos)
"""
fillGenPos: [ImgixParamsFillGenPos!]
"""
Fill Generative Prompt
Provides a text suggestion to the generative fill parameter.
Depends on: `fit=fill`, `fill=gen`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gen-prompt)
"""
fillGenPrompt: String
"""
Fill Generative Seed
Sets the generative seed value. Used to generate similar outputs from different prompts.
Depends on: `fit=fill`, `fill=gen`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gen-seed)
"""
fillGenSeed: IntType
"""
Fill Gradient Color Space
Defines the color space as linear, sRGB, Oklab, HSL, or LCH for gradient color interpolation
Depends on: `fit=fill`, `fill=gradient`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gradient-cs)
"""
fillGradientCs: ImgixParamsFillGradientCs
"""
Fill Gradient Linear Direction
The fill-gradient-linear-direction specifies the gradient's direction, flowing towards the bottom, top, right, or left
Depends on: `fit=fill`, `fill=gen`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gradient-linear-direction)
"""
fillGradientLinearDirection: [ImgixParamsFillGradientLinearDirection!]
"""
Fill Gradient Linear
Blends a gradient between two colors, {color1} and {color2}, along a straight path
Depends on: `fit=fill`, `fill=gradient`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gradient-linear)
"""
fillGradientLinear: String
"""
Fill Gradient Radial Radius
Parameter defines the radial gradient's radius as pixels or a percentage (0.0-1.0) of the image's smallest dimension
Depends on: `fit=fill`, `fill=gradient`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-gradient-radial-radius)
"""
fillGradientRadialRadius: String
"""
Fill Gradient Radial X
Specifies the location of the radial gradient's center along the x-axis, using either a pixel value or a floating point percentage (ranging from 0.0 to 1.0) of the image's width
Depends on: `fit=fill`, `fill=gradient`