File: test_partial_updates.py

package info (click to toggle)
strawberry-graphql-django 0.62.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,968 kB
  • sloc: python: 27,530; sh: 17; makefile: 16
file content (1057 lines) | stat: -rw-r--r-- 34,091 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
"""Tests the behaviour of partial input optional fields in mutations.

This module tests Strawberry-Django's handling of partial input optional fields in
mutations, specifically when their values are omitted or explicitly set to `null`, for
different variations of model fields:

* Required fields
* Optional and nullable fields
* Optional and non-nullable fields
* Required foreign key fields
* Optional foreign key fields
* Many-to-many fields

These tests stem from the fact that the GraphQL type-system doesn't distinguish between
optional and nullable. That is, type `T!` is both required and non-nullable (i.e., must
be supplied and cannot be `null`), but type `T` is both optional and nullable (i.e., can
be omitted and can be `null`).
"""

import pytest
import strawberry
from django.test import override_settings
from strawberry.relay import to_base64

import strawberry_django
from strawberry_django.settings import strawberry_django_settings
from tests.projects.faker import (
    IssueFactory,
    MilestoneFactory,
    ProjectFactory,
    TagFactory,
)
from tests.projects.models import Issue, Milestone, Project, Tag
from tests.utils import generate_query


@pytest.fixture
def mutation(db):
    @strawberry_django.type(Issue)
    class IssueType:
        id: strawberry.auto
        name: strawberry.auto
        kind: strawberry.auto
        priority: strawberry.auto
        milestone: strawberry.auto
        tags: strawberry.auto

    @strawberry_django.partial(Issue)
    class IssueInputPartial:
        id: strawberry.auto
        name: strawberry.auto
        kind: strawberry.auto
        priority: strawberry.auto
        milestone: strawberry.auto
        tags: strawberry.auto

    @strawberry_django.type(Milestone)
    class MilestoneType:
        id: strawberry.auto
        project: strawberry.auto

    @strawberry_django.partial(Milestone)
    class MilestoneInputPartial:
        id: strawberry.auto
        project: strawberry.auto

    @strawberry_django.type(Project)
    class ProjectType:
        id: strawberry.auto

    @strawberry_django.type(Tag)
    class TagType:
        id: strawberry.auto

    @strawberry.type
    class Query:
        issue: IssueType
        milestone: MilestoneType
        project: ProjectType
        tag: TagType

    @strawberry.type
    class Mutation:
        update_issue: IssueType = strawberry_django.mutations.update(
            IssueInputPartial,
            handle_django_errors=True,
        )
        update_milestone: MilestoneType = strawberry_django.mutations.update(
            MilestoneInputPartial,
            handle_django_errors=True,
        )

    return generate_query(query=Query, mutation=Mutation)


def test_field_required(mutation):
    """Tests behaviour for a required model field."""
    query = """mutation UpdateIssueName($id: ID!, $name: String) {
      updateIssue(data: { id: $id, name: $name }) {
        ...on IssueType {
          name
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    issue_name = "Original name"
    issue = IssueFactory.create(name=issue_name)

    # Update the issue, omitting the `name` field
    # We expect the mutation to succeed and the name to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {"updateIssue": {"name": issue_name}}
    issue.refresh_from_db()
    assert issue.name == issue_name

    # Update the issue, explicitly providing `null` for the `name` field
    # We expect the mutation to fail and the name to remain unchanged
    # Note that this failure occurs at the model level, not the GraphQL level
    result = mutation(query, {"id": issue.pk, "name": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {
            "messages": [
                {
                    "kind": "VALIDATION",
                    "code": "null",
                    "message": "This field cannot be null.",
                    "field": "name",
                }
            ]
        }
    }
    issue.refresh_from_db()
    assert issue.name == issue_name


def test_field_optional_and_non_nullable(mutation):
    """Tests behaviour for an optional & non-nullable model field."""
    query = """mutation UpdateIssuePriority($id: ID!, $priority: Int) {
      updateIssue(data: { id: $id, priority: $priority }) {
        ...on IssueType {
          priority
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    issue_priority = 42
    issue = IssueFactory.create(priority=issue_priority)

    # Update the issue, omitting the `priority` field
    # We expect the mutation to succeed and the priority to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {"updateIssue": {"priority": issue_priority}}
    issue.refresh_from_db()
    assert issue.priority == issue_priority

    # Update the issue, explicitly providing `null` for the `priority` field
    # We expect the mutation to fail and the priority to remain unchanged
    # Note that this failure occurs at the model level, not the GraphQL level
    result = mutation(query, {"id": issue.pk, "priority": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {
            "messages": [
                {
                    "kind": "VALIDATION",
                    "code": "null",
                    "message": "This field cannot be null.",
                    "field": "priority",
                }
            ]
        }
    }
    issue.refresh_from_db()
    assert issue.priority == issue_priority


def test_field_optional_and_nullable(mutation):
    """Tests behaviour for an optional & nullable model field."""
    query = """mutation UpdateIssueKind($id: ID!, $kind: String) {
      updateIssue(data: { id: $id, kind: $kind }) {
        ...on IssueType {
          kind
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    issue_kind = Issue.Kind.FEATURE.value
    issue = IssueFactory.create(kind=issue_kind)

    # Update the issue, omitting the `kind` field
    # We expect the mutation to succeed and the kind to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {"updateIssue": {"kind": issue_kind}}
    issue.refresh_from_db()
    assert issue.kind == issue_kind

    # Update the issue, explicitly providing `null` for the `kind` field
    # We expect the mutation to succeed and the kind to be set to `None`
    result = mutation(query, {"id": issue.pk, "kind": None})
    assert result.errors is None
    assert result.data == {"updateIssue": {"kind": None}}
    issue.refresh_from_db()
    assert issue.kind is None


def test_foreign_key_required(mutation):
    """Tests behaviour for a required foreign key field."""
    query = """mutation UpdateMilestoneProject($id: ID!, $project: OneToManyInput) {
      updateMilestone(data: { id: $id, project: $project }) {
        ...on MilestoneType {
          project { pk }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create a milestone
    project = ProjectFactory.create()
    milestone = MilestoneFactory.create(project=project)

    # Update the milestone, omitting the `project` field
    # We expect the mutation to succeed and the project to remain unchanged
    result = mutation(query, {"id": milestone.pk})
    assert result.errors is None
    assert result.data == {"updateMilestone": {"project": {"pk": str(project.pk)}}}
    milestone.refresh_from_db()
    assert milestone.project == project

    # Update the milestone, explicitly providing `null` for the `project` field
    # We expect the mutation to fail and the project to remain unchanged
    # Note that this failure occurs at the model level, not the GraphQL level
    result = mutation(query, {"id": milestone.pk, "project": None})
    assert result.errors is None
    assert result.data == {
        "updateMilestone": {
            "messages": [
                {
                    "kind": "VALIDATION",
                    "code": "null",
                    "message": "This field cannot be null.",
                    "field": "project",
                }
            ]
        }
    }
    milestone.refresh_from_db()
    assert milestone.project == project


def test_foreign_key_optional(mutation):
    """Tests behaviour for an optional foreign key field."""
    query = """mutation UpdateIssueMilestone($id: ID!, $milestone: OneToManyInput) {
      updateIssue(data: { id: $id, milestone: $milestone }) {
        ...on IssueType {
          milestone { pk }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    milestone = MilestoneFactory.create()
    issue = IssueFactory.create(milestone=milestone)

    # Update the issue, omitting the `milestone` field
    # We expect the mutation to succeed and the milestone to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {"updateIssue": {"milestone": {"pk": str(milestone.pk)}}}
    issue.refresh_from_db()
    assert issue.milestone == milestone

    # Update the issue, explicitly providing `null` for the `milestone` field
    # We expect the mutation to succeed and the milestone to be set to `None`
    result = mutation(query, {"id": issue.pk, "milestone": None})
    assert result.errors is None
    assert result.data == {"updateIssue": {"milestone": None}}
    issue.refresh_from_db()
    assert issue.milestone is None


def test_many_to_many(mutation):
    """Tests behaviour for a many to many field."""
    query = """mutation UpdateIssueTags($id: ID!, $tags: ManyToManyInput) {
      updateIssue(data: { id: $id, tags: $tags }) {
        ...on IssueType {
          tags { pk }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    issue = IssueFactory.create()
    issue.tags.set(tags)

    # Update the issue, omitting the `tags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `tags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = mutation(query, {"id": issue.pk, "tags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags


def test_many_to_many_set(mutation):
    """Tests behaviour for `set` on a many to many field."""
    query = """mutation SetIssueTags($id: ID!, $setTags: [ID!]) {
      updateIssue(data: { id: $id, tags: { set: $setTags } }) {
        ...on IssueType {
          tags { pk }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    issue = IssueFactory.create()
    issue.tags.set(tags)

    # Update the issue, omitting the `setTags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `setTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = mutation(query, {"id": issue.pk, "setTags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing an empty list for the `setTags` field
    # We expect the mutation to succeed, and the tags to be cleared
    result = mutation(query, {"id": issue.pk, "setTags": []})
    assert result.errors is None
    assert result.data == {"updateIssue": {"tags": []}}
    issue.refresh_from_db()
    assert list(issue.tags.all()) == []


def test_many_to_many_add(mutation):
    """Tests behaviour for `add` on a many to many field."""
    query = """mutation AddIssueTags($id: ID!, $addTags: [ID!]) {
      updateIssue(data: { id: $id, tags: { add: $addTags } }) {
        ...on IssueType {
          tags { pk }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    issue = IssueFactory.create()
    issue.tags.set(tags)

    # Update the issue, omitting the `addTags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `addTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = mutation(query, {"id": issue.pk, "addTags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing an empty list for the `addTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = mutation(query, {"id": issue.pk, "addTags": []})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags


def test_many_to_many_remove(mutation):
    """Tests behaviour for `remove` on a many to many field."""
    query = """mutation RemoveIssueTags($id: ID!, $removeTags: [ID!]) {
      updateIssue(data: { id: $id, tags: { remove: $removeTags } }) {
        ...on IssueType {
          tags { pk }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    issue = IssueFactory.create()
    issue.tags.set(tags)

    # Update the issue, omitting the `removeTags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = mutation(query, {"id": issue.pk})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `removeTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = mutation(query, {"id": issue.pk, "removeTags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing an empty list for the `removeTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = mutation(query, {"id": issue.pk, "removeTags": []})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"pk": str(tag.pk)} for tag in tags]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags


@pytest.fixture
@override_settings(
    STRAWBERRY_DJANGO={
        **strawberry_django_settings(),
        "MAP_AUTO_ID_AS_GLOBAL_ID": True,
    },
)
def relay_mutation(db):
    @strawberry_django.type(Issue)
    class IssueType(strawberry.relay.Node):
        name: strawberry.auto
        kind: strawberry.auto
        priority: strawberry.auto
        milestone: strawberry.auto
        tags: strawberry.auto

    @strawberry_django.partial(Issue)
    class IssueInputPartial(strawberry_django.NodeInput):
        name: strawberry.auto
        kind: strawberry.auto
        priority: strawberry.auto
        milestone: strawberry.auto
        tags: strawberry.auto

    @strawberry_django.type(Milestone)
    class MilestoneType(strawberry.relay.Node):
        project: strawberry.auto

    @strawberry_django.partial(Milestone)
    class MilestoneInputPartial(strawberry_django.NodeInput):
        project: strawberry.auto

    @strawberry_django.type(Project)
    class ProjectType(strawberry.relay.Node):
        pass

    @strawberry_django.type(Tag)
    class TagType(strawberry.relay.Node):
        pass

    @strawberry.type
    class Query:
        issue: IssueType
        milestone: MilestoneType
        project: ProjectType
        tag: TagType

    @strawberry.type
    class Mutation:
        update_issue: IssueType = strawberry_django.mutations.update(
            IssueInputPartial,
            handle_django_errors=True,
        )
        update_milestone: MilestoneType = strawberry_django.mutations.update(
            MilestoneInputPartial,
            handle_django_errors=True,
        )

    return generate_query(query=Query, mutation=Mutation)


def test_relay_field_required(relay_mutation):
    """Tests Relay behaviour for a required model field."""
    query = """mutation UpdateIssueName($id: ID!, $name: String) {
      updateIssue(data: { id: $id, name: $name }) {
        ...on IssueType {
          name
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    issue_name = "Original name"
    issue = IssueFactory.create(name=issue_name)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `name` field
    # We expect the mutation to succeed and the name to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {"updateIssue": {"name": issue_name}}
    issue.refresh_from_db()
    assert issue.name == issue_name

    # Update the issue, explicitly providing `null` for the `name` field
    # We expect the mutation to fail and the name to remain unchanged
    # Note that this failure occurs at the model level, not the GraphQL level
    result = relay_mutation(query, {"id": issue_id, "name": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {
            "messages": [
                {
                    "kind": "VALIDATION",
                    "code": "null",
                    "message": "This field cannot be null.",
                    "field": "name",
                }
            ]
        }
    }
    issue.refresh_from_db()
    assert issue.name == issue_name


def test_relay_field_optional_and_non_nullable(relay_mutation):
    """Tests Relay behaviour for an optional & non-nullable model field."""
    query = """mutation UpdateIssuePriority($id: ID!, $priority: Int) {
      updateIssue(data: { id: $id, priority: $priority }) {
        ...on IssueType {
          priority
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    issue_priority = 42
    issue = IssueFactory.create(priority=issue_priority)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `priority` field
    # We expect the mutation to succeed and the priority to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {"updateIssue": {"priority": issue_priority}}
    issue.refresh_from_db()
    assert issue.priority == issue_priority

    # Update the issue, explicitly providing `null` for the `priority` field
    # We expect the mutation to fail and the priority to remain unchanged
    # Note that this failure occurs at the model level, not the GraphQL level
    result = relay_mutation(query, {"id": issue_id, "priority": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {
            "messages": [
                {
                    "kind": "VALIDATION",
                    "code": "null",
                    "message": "This field cannot be null.",
                    "field": "priority",
                }
            ]
        }
    }
    issue.refresh_from_db()
    assert issue.priority == issue_priority


def test_relay_field_optional_and_nullable(relay_mutation):
    """Tests Relay behaviour for an optional & nullable model field."""
    query = """mutation UpdateIssueKind($id: ID!, $kind: String) {
      updateIssue(data: { id: $id, kind: $kind }) {
        ...on IssueType {
          kind
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    issue_kind = Issue.Kind.FEATURE.value
    issue = IssueFactory.create(kind=issue_kind)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `kind` field
    # We expect the mutation to succeed and the kind to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {"updateIssue": {"kind": issue_kind}}
    issue.refresh_from_db()
    assert issue.kind == issue_kind

    # Update the issue, explicitly providing `null` for the `kind` field
    # We expect the mutation to succeed and the kind to be set to `None`
    result = relay_mutation(query, {"id": issue_id, "kind": None})
    assert result.errors is None
    assert result.data == {"updateIssue": {"kind": None}}
    issue.refresh_from_db()
    assert issue.kind is None


def test_relay_foreign_key_required(relay_mutation):
    """Tests Relay behaviour for a required foreign key field."""
    query = """mutation UpdateMilestoneProject($id: ID!, $project: NodeInput) {
      updateMilestone(data: { id: $id, project: $project }) {
        ...on MilestoneType {
          project { id }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create a milestone
    project = ProjectFactory.create()
    project_id = to_base64("ProjectType", project.pk)
    milestone = MilestoneFactory.create(project=project)
    milestone_id = to_base64("MilestoneType", milestone.pk)

    # Update the milestone, omitting the `project` field
    # We expect the mutation to succeed and the project to remain unchanged
    result = relay_mutation(query, {"id": milestone_id})
    assert result.errors is None
    assert result.data == {"updateMilestone": {"project": {"id": project_id}}}
    milestone.refresh_from_db()
    assert milestone.project == project

    # Update the milestone, explicitly providing `null` for the `project` field
    # We expect the mutation to fail and the project to remain unchanged
    # Note that this failure occurs at the model level, not the GraphQL level
    result = relay_mutation(query, {"id": milestone_id, "project": None})
    assert result.errors is None
    assert result.data == {
        "updateMilestone": {
            "messages": [
                {
                    "kind": "VALIDATION",
                    "code": "null",
                    "message": "This field cannot be null.",
                    "field": "project",
                }
            ]
        }
    }
    milestone.refresh_from_db()
    assert milestone.project == project


def test_relay_foreign_key_optional(relay_mutation):
    """Tests Relay behaviour for an optional foreign key field."""
    query = """mutation UpdateIssueMilestone($id: ID!, $milestone: NodeInput) {
      updateIssue(data: { id: $id, milestone: $milestone }) {
        ...on IssueType {
          milestone { id }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    milestone = MilestoneFactory.create()
    milestone_id = to_base64("MilestoneType", milestone.pk)
    issue = IssueFactory.create(milestone=milestone)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `milestone` field
    # We expect the mutation to succeed and the milestone to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {"updateIssue": {"milestone": {"id": milestone_id}}}
    issue.refresh_from_db()
    assert issue.milestone == milestone

    # Update the issue, explicitly providing `null` for the `milestone` field
    # We expect the mutation to succeed and the milestone to be set to `None`
    result = relay_mutation(query, {"id": issue_id, "milestone": None})
    assert result.errors is None
    assert result.data == {"updateIssue": {"milestone": None}}
    issue.refresh_from_db()
    assert issue.milestone is None


def test_relay_many_to_many(relay_mutation):
    """Tests Relay behaviour for a many to many field."""
    query = """mutation UpdateIssueTags($id: ID!, $tags: NodeInputListInput) {
      updateIssue(data: { id: $id, tags: $tags }) {
        ...on IssueType {
          tags { id }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    tag_ids = [to_base64("TagType", tag.pk) for tag in tags]
    issue = IssueFactory.create()
    issue.tags.set(tags)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `tags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `tags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id, "tags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags


def test_relay_many_to_many_set(relay_mutation):
    """Tests Relay behaviour for `set` on a many to many field."""
    query = """mutation SetIssueTags($id: ID!, $setTags: [NodeInput!]) {
      updateIssue(data: { id: $id, tags: { set: $setTags } }) {
        ...on IssueType {
          tags { id }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    tag_ids = [to_base64("TagType", tag.pk) for tag in tags]
    issue = IssueFactory.create()
    issue.tags.set(tags)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `setTags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `setTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id, "setTags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing an empty list for the `setTags` field
    # We expect the mutation to succeed, and the tags to be cleared
    result = relay_mutation(query, {"id": issue_id, "setTags": []})
    assert result.errors is None
    assert result.data == {"updateIssue": {"tags": []}}
    issue.refresh_from_db()
    assert list(issue.tags.all()) == []


def test_relay_many_to_many_add(relay_mutation):
    """Tests Relay behaviour for `add` on a many to many field."""
    query = """mutation AddIssueTags($id: ID!, $addTags: [NodeInput!]) {
      updateIssue(data: { id: $id, tags: { add: $addTags } }) {
        ...on IssueType {
          tags { id }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    tag_ids = [to_base64("TagType", tag.pk) for tag in tags]
    issue = IssueFactory.create()
    issue.tags.set(tags)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `addTags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `addTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id, "addTags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing an empty list for the `addTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id, "addTags": []})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags


def test_relay_many_to_many_remove(relay_mutation):
    """Tests Relay behaviour for `remove` on a many to many field."""
    query = """mutation RemoveIssueTags($id: ID!, $removeTags: [NodeInput!]) {
      updateIssue(data: { id: $id, tags: { remove: $removeTags } }) {
        ...on IssueType {
          tags { id }
        }
        ... on OperationInfo {
          messages {
            kind
            code
            message
            field
          }
        }
      }
    }
    """

    # Create an issue
    tags = TagFactory.create_batch(3)
    tag_ids = [to_base64("TagType", tag.pk) for tag in tags]
    issue = IssueFactory.create()
    issue.tags.set(tags)
    issue_id = to_base64("IssueType", issue.pk)

    # Update the issue, omitting the `removeTags` field
    # We expect the mutation to succeed and the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing `null` for the `removeTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id, "removeTags": None})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags

    # Update the issue, explicitly providing an empty list for the `removeTags` field
    # We expect the mutation to succeed, but the tags to remain unchanged
    result = relay_mutation(query, {"id": issue_id, "removeTags": []})
    assert result.errors is None
    assert result.data == {
        "updateIssue": {"tags": [{"id": tag_id} for tag_id in tag_ids]}
    }
    issue.refresh_from_db()
    assert list(issue.tags.all()) == tags