@@ -573,20 +573,20 @@ mutation CommentCreateMutation(
573
573
~~~~~~~~~~ OUTPUT ~~~~~~~~~~
574
574
// CommentCreateMutation.graphql
575
575
export type CommentCreateInput = {
576
- readonly clientMutationId ?: string | null ;
577
- readonly feedbackId ?: string | null ;
578
- readonly feedback ?: CommentfeedbackFeedback | null ;
576
+ clientMutationId ?: string | null ;
577
+ feedbackId ?: string | null ;
578
+ feedback ?: CommentfeedbackFeedback | null ;
579
579
} ;
580
580
export type CommentfeedbackFeedback = {
581
- readonly comment ?: FeedbackcommentComment | null ;
581
+ comment ?: FeedbackcommentComment | null ;
582
582
} ;
583
583
export type FeedbackcommentComment = {
584
- readonly feedback ?: CommentfeedbackFeedback | null ;
584
+ feedback ?: CommentfeedbackFeedback | null ;
585
585
} ;
586
586
export type CommentCreateMutationVariables = {
587
587
input : CommentCreateInput ;
588
588
first ?: number | null ;
589
- orderBy ?: ReadonlyArray <string > | null;
589
+ orderBy ?: Array <string > | null;
590
590
};
591
591
export type CommentCreateMutationResponse = {
592
592
readonly commentCreate : {
@@ -619,8 +619,8 @@ mutation InputHasArray($input: UpdateAllSeenStateInput) @raw_response_type {
619
619
~~~~~~~~~~ OUTPUT ~~~~~~~~~~
620
620
// InputHasArray.graphql
621
621
export type UpdateAllSeenStateInput = {
622
- readonly clientMutationId ?: string | null ;
623
- readonly storyIds ?: ReadonlyArray < string | null > | null ;
622
+ clientMutationId ?: string | null ;
623
+ storyIds ?: Array < string | null > | null ;
624
624
} ;
625
625
export type InputHasArrayVariables = {
626
626
input ?: UpdateAllSeenStateInput | null ;
@@ -670,8 +670,8 @@ type Foo {
670
670
~~~~~~~~~~ OUTPUT ~~~~~~~~~~
671
671
// Test.graphql
672
672
export type UpdateAllSeenStateInput = {
673
- readonly clientMutationId ?: string | null ;
674
- readonly storyIds ?: ReadonlyArray < string | null > | null ;
673
+ clientMutationId ?: string | null ;
674
+ storyIds ?: Array < string | null > | null ;
675
675
} ;
676
676
export type TestVariables = {
677
677
input ?: UpdateAllSeenStateInput | null ;
@@ -738,20 +738,20 @@ fragment FriendFragment on User {
738
738
import { FragmentRefs } from "relay-runtime";
739
739
export type TestEnums = "mark" | "zuck" | "%future added value";
740
740
export type CommentCreateInput = {
741
- readonly clientMutationId ?: string | null ;
742
- readonly feedbackId ?: string | null ;
743
- readonly feedback ?: CommentfeedbackFeedback | null ;
741
+ clientMutationId ?: string | null ;
742
+ feedbackId ?: string | null ;
743
+ feedback ?: CommentfeedbackFeedback | null ;
744
744
} ;
745
745
export type CommentfeedbackFeedback = {
746
- readonly comment ?: FeedbackcommentComment | null ;
746
+ comment ?: FeedbackcommentComment | null ;
747
747
} ;
748
748
export type FeedbackcommentComment = {
749
- readonly feedback ?: CommentfeedbackFeedback | null ;
749
+ feedback ?: CommentfeedbackFeedback | null ;
750
750
} ;
751
751
export type CommentCreateMutationVariables = {
752
752
input : CommentCreateInput ;
753
753
first ?: number | null ;
754
- orderBy ?: ReadonlyArray <string > | null;
754
+ orderBy ?: Array <string > | null;
755
755
};
756
756
export type CommentCreateMutationResponse = {
757
757
readonly commentCreate : {
@@ -846,20 +846,20 @@ fragment FeedbackFragment on Feedback {
846
846
// CommentCreateMutation.graphql
847
847
import { FragmentRefs } from "relay-runtime";
848
848
export type CommentCreateInput = {
849
- readonly clientMutationId ?: string | null ;
850
- readonly feedbackId ?: string | null ;
851
- readonly feedback ?: CommentfeedbackFeedback | null ;
849
+ clientMutationId ?: string | null ;
850
+ feedbackId ?: string | null ;
851
+ feedback ?: CommentfeedbackFeedback | null ;
852
852
} ;
853
853
export type CommentfeedbackFeedback = {
854
- readonly comment ?: FeedbackcommentComment | null ;
854
+ comment ?: FeedbackcommentComment | null ;
855
855
} ;
856
856
export type FeedbackcommentComment = {
857
- readonly feedback ?: CommentfeedbackFeedback | null ;
857
+ feedback ?: CommentfeedbackFeedback | null ;
858
858
} ;
859
859
export type CommentCreateMutationVariables = {
860
860
input : CommentCreateInput ;
861
861
first ?: number | null ;
862
- orderBy ?: ReadonlyArray <string > | null;
862
+ orderBy ?: Array <string > | null;
863
863
};
864
864
export type CommentCreateMutationResponse = {
865
865
readonly commentCreate : {
@@ -956,15 +956,15 @@ fragment InlineFragmentWithOverlappingFields on Actor {
956
956
// TestMutation.graphql
957
957
import { FragmentRefs } from "relay-runtime";
958
958
export type CommentCreateInput = {
959
- readonly clientMutationId ?: string | null ;
960
- readonly feedbackId ?: string | null ;
961
- readonly feedback ?: CommentfeedbackFeedback | null ;
959
+ clientMutationId ?: string | null ;
960
+ feedbackId ?: string | null ;
961
+ feedback ?: CommentfeedbackFeedback | null ;
962
962
} ;
963
963
export type CommentfeedbackFeedback = {
964
- readonly comment ?: FeedbackcommentComment | null ;
964
+ comment ?: FeedbackcommentComment | null ;
965
965
} ;
966
966
export type FeedbackcommentComment = {
967
- readonly feedback ?: CommentfeedbackFeedback | null ;
967
+ feedback ?: CommentfeedbackFeedback | null ;
968
968
} ;
969
969
export type TestMutationVariables = {
970
970
input : CommentCreateInput ;
@@ -1436,15 +1436,15 @@ export type ExampleFragment = {
1436
1436
1437
1437
// TestMutation.graphql
1438
1438
export type CommentCreateInput = {
1439
- readonly clientMutationId ?: string | null ;
1440
- readonly feedbackId ?: string | null ;
1441
- readonly feedback ?: CommentfeedbackFeedback | null ;
1439
+ clientMutationId ?: string | null ;
1440
+ feedbackId ?: string | null ;
1441
+ feedback ?: CommentfeedbackFeedback | null ;
1442
1442
} ;
1443
1443
export type CommentfeedbackFeedback = {
1444
- readonly comment ?: FeedbackcommentComment | null ;
1444
+ comment ?: FeedbackcommentComment | null ;
1445
1445
} ;
1446
1446
export type FeedbackcommentComment = {
1447
- readonly feedback ?: CommentfeedbackFeedback | null ;
1447
+ feedback ?: CommentfeedbackFeedback | null ;
1448
1448
} ;
1449
1449
export type TestMutationVariables = {
1450
1450
input : CommentCreateInput ;
@@ -1464,8 +1464,8 @@ export type TestMutation = {
1464
1464
1465
1465
// TestSubscription.graphql
1466
1466
export type FeedbackLikeInput = {
1467
- readonly clientMutationId ?: string | null ;
1468
- readonly feedbackId ?: string | null ;
1467
+ clientMutationId ?: string | null ;
1468
+ feedbackId ?: string | null ;
1469
1469
} ;
1470
1470
export type TestSubscriptionVariables = {
1471
1471
input ?: FeedbackLikeInput | null ;
@@ -2401,20 +2401,20 @@ mutation CommentCreateMutation(
2401
2401
~~~~~~~~~~ OUTPUT ~~~~~~~~~~
2402
2402
// CommentCreateMutation.graphql
2403
2403
export type CommentCreateInput = {
2404
- readonly clientMutationId ?: string | null ;
2405
- readonly feedbackId ?: string | null ;
2406
- readonly feedback ?: CommentfeedbackFeedback | null ;
2404
+ clientMutationId ?: string | null ;
2405
+ feedbackId ?: string | null ;
2406
+ feedback ?: CommentfeedbackFeedback | null ;
2407
2407
} ;
2408
2408
export type CommentfeedbackFeedback = {
2409
- readonly comment ?: FeedbackcommentComment | null ;
2409
+ comment ?: FeedbackcommentComment | null ;
2410
2410
} ;
2411
2411
export type FeedbackcommentComment = {
2412
- readonly feedback ?: CommentfeedbackFeedback | null ;
2412
+ feedback ?: CommentfeedbackFeedback | null ;
2413
2413
} ;
2414
2414
export type CommentCreateMutationVariables = {
2415
2415
input : CommentCreateInput ;
2416
2416
first ?: number | null ;
2417
- orderBy ?: ReadonlyArray <string > | null;
2417
+ orderBy ?: Array <string > | null;
2418
2418
};
2419
2419
export type CommentCreateMutationResponse = {
2420
2420
readonly commentCreate : {
@@ -2447,8 +2447,8 @@ mutation InputHasArray($input: UpdateAllSeenStateInput) @raw_response_type {
2447
2447
~~~~~~~~~~ OUTPUT ~~~~~~~~~~
2448
2448
// InputHasArray.graphql
2449
2449
export type UpdateAllSeenStateInput = {
2450
- readonly clientMutationId ?: string | null ;
2451
- readonly storyIds ?: ReadonlyArray < string | null > | null ;
2450
+ clientMutationId ?: string | null ;
2451
+ storyIds ?: Array < string | null > | null ;
2452
2452
} ;
2453
2453
export type InputHasArrayVariables = {
2454
2454
input ?: UpdateAllSeenStateInput | null ;
@@ -2498,8 +2498,8 @@ type Foo {
2498
2498
~~~~~~~~~~ OUTPUT ~~~~~~~~~~
2499
2499
// Test.graphql
2500
2500
export type UpdateAllSeenStateInput = {
2501
- readonly clientMutationId ?: string | null ;
2502
- readonly storyIds ?: ReadonlyArray < string | null > | null ;
2501
+ clientMutationId ?: string | null ;
2502
+ storyIds ?: Array < string | null > | null ;
2503
2503
} ;
2504
2504
export type TestVariables = {
2505
2505
input ?: UpdateAllSeenStateInput | null ;
@@ -2566,20 +2566,20 @@ fragment FriendFragment on User {
2566
2566
import { FragmentRefs } from "relay-runtime";
2567
2567
export type TestEnums = "mark" | "zuck" | "%future added value";
2568
2568
export type CommentCreateInput = {
2569
- readonly clientMutationId ?: string | null ;
2570
- readonly feedbackId ?: string | null ;
2571
- readonly feedback ?: CommentfeedbackFeedback | null ;
2569
+ clientMutationId ?: string | null ;
2570
+ feedbackId ?: string | null ;
2571
+ feedback ?: CommentfeedbackFeedback | null ;
2572
2572
} ;
2573
2573
export type CommentfeedbackFeedback = {
2574
- readonly comment ?: FeedbackcommentComment | null ;
2574
+ comment ?: FeedbackcommentComment | null ;
2575
2575
} ;
2576
2576
export type FeedbackcommentComment = {
2577
- readonly feedback ?: CommentfeedbackFeedback | null ;
2577
+ feedback ?: CommentfeedbackFeedback | null ;
2578
2578
} ;
2579
2579
export type CommentCreateMutationVariables = {
2580
2580
input : CommentCreateInput ;
2581
2581
first ?: number | null ;
2582
- orderBy ?: ReadonlyArray <string > | null;
2582
+ orderBy ?: Array <string > | null;
2583
2583
};
2584
2584
export type CommentCreateMutationResponse = {
2585
2585
readonly commentCreate : {
@@ -2674,20 +2674,20 @@ fragment FeedbackFragment on Feedback {
2674
2674
// CommentCreateMutation.graphql
2675
2675
import { FragmentRefs } from "relay-runtime";
2676
2676
export type CommentCreateInput = {
2677
- readonly clientMutationId ?: string | null ;
2678
- readonly feedbackId ?: string | null ;
2679
- readonly feedback ?: CommentfeedbackFeedback | null ;
2677
+ clientMutationId ?: string | null ;
2678
+ feedbackId ?: string | null ;
2679
+ feedback ?: CommentfeedbackFeedback | null ;
2680
2680
} ;
2681
2681
export type CommentfeedbackFeedback = {
2682
- readonly comment ?: FeedbackcommentComment | null ;
2682
+ comment ?: FeedbackcommentComment | null ;
2683
2683
} ;
2684
2684
export type FeedbackcommentComment = {
2685
- readonly feedback ?: CommentfeedbackFeedback | null ;
2685
+ feedback ?: CommentfeedbackFeedback | null ;
2686
2686
} ;
2687
2687
export type CommentCreateMutationVariables = {
2688
2688
input : CommentCreateInput ;
2689
2689
first ?: number | null ;
2690
- orderBy ?: ReadonlyArray <string > | null;
2690
+ orderBy ?: Array <string > | null;
2691
2691
};
2692
2692
export type CommentCreateMutationResponse = {
2693
2693
readonly commentCreate : {
@@ -2784,15 +2784,15 @@ fragment InlineFragmentWithOverlappingFields on Actor {
2784
2784
// TestMutation.graphql
2785
2785
import { FragmentRefs } from "relay-runtime";
2786
2786
export type CommentCreateInput = {
2787
- readonly clientMutationId ?: string | null ;
2788
- readonly feedbackId ?: string | null ;
2789
- readonly feedback ?: CommentfeedbackFeedback | null ;
2787
+ clientMutationId ?: string | null ;
2788
+ feedbackId ?: string | null ;
2789
+ feedback ?: CommentfeedbackFeedback | null ;
2790
2790
} ;
2791
2791
export type CommentfeedbackFeedback = {
2792
- readonly comment ?: FeedbackcommentComment | null ;
2792
+ comment ?: FeedbackcommentComment | null ;
2793
2793
} ;
2794
2794
export type FeedbackcommentComment = {
2795
- readonly feedback ?: CommentfeedbackFeedback | null ;
2795
+ feedback ?: CommentfeedbackFeedback | null ;
2796
2796
} ;
2797
2797
export type TestMutationVariables = {
2798
2798
input : CommentCreateInput ;
@@ -3264,15 +3264,15 @@ export type ExampleFragment = {
3264
3264
3265
3265
// TestMutation.graphql
3266
3266
export type CommentCreateInput = {
3267
- readonly clientMutationId ?: string | null ;
3268
- readonly feedbackId ?: string | null ;
3269
- readonly feedback ?: CommentfeedbackFeedback | null ;
3267
+ clientMutationId ?: string | null ;
3268
+ feedbackId ?: string | null ;
3269
+ feedback ?: CommentfeedbackFeedback | null ;
3270
3270
} ;
3271
3271
export type CommentfeedbackFeedback = {
3272
- readonly comment ?: FeedbackcommentComment | null ;
3272
+ comment ?: FeedbackcommentComment | null ;
3273
3273
} ;
3274
3274
export type FeedbackcommentComment = {
3275
- readonly feedback ?: CommentfeedbackFeedback | null ;
3275
+ feedback ?: CommentfeedbackFeedback | null ;
3276
3276
} ;
3277
3277
export type TestMutationVariables = {
3278
3278
input : CommentCreateInput ;
@@ -3292,8 +3292,8 @@ export type TestMutation = {
3292
3292
3293
3293
// TestSubscription.graphql
3294
3294
export type FeedbackLikeInput = {
3295
- readonly clientMutationId ?: string | null ;
3296
- readonly feedbackId ?: string | null ;
3295
+ clientMutationId ?: string | null ;
3296
+ feedbackId ?: string | null ;
3297
3297
} ;
3298
3298
export type TestSubscriptionVariables = {
3299
3299
input ?: FeedbackLikeInput | null ;
0 commit comments