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
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
use crate::{
    query_ast::*,
    query_graph::{Flow, Node, NodeRef, QueryGraph, QueryGraphDependency},
    Computation, ParsedInputValue, QueryGraphBuilderError, QueryGraphBuilderResult,
};
use connector::{DatasourceFieldName, RecordFilter, WriteArgs, WriteOperation};
use indexmap::IndexMap;
use psl::parser_database::ReferentialAction;
use query_structure::{FieldSelection, Filter, Model, PrismaValue, RelationFieldRef, SelectionResult};
use schema::QuerySchema;

/// Coerces single values (`ParsedInputValue::Single` and `ParsedInputValue::Map`) into a vector.
/// Simply unpacks `ParsedInputValue::List`.
pub(crate) fn coerce_vec(val: ParsedInputValue<'_>) -> Vec<ParsedInputValue<'_>> {
    match val {
        ParsedInputValue::List(l) => l,
        m @ ParsedInputValue::Map(_) => vec![m],
        single => vec![single],
    }
}

pub(crate) fn node_is_create(graph: &QueryGraph, node: &NodeRef) -> bool {
    matches!(
        graph.node_content(node).unwrap(),
        Node::Query(Query::Write(WriteQuery::CreateRecord(_)))
    )
}

/// Produces a non-failing read query that fetches the requested selection of records for a given filterable.
pub(crate) fn read_ids_infallible<T>(model: Model, selection: FieldSelection, filter: T) -> Query
where
    T: Into<Filter>,
{
    let selected_fields = get_selected_fields(&model, selection);
    let filter: Filter = filter.into();

    let read_query = ReadQuery::ManyRecordsQuery(ManyRecordsQuery {
        name: "read_ids_infallible".into(), // this name only eases debugging
        alias: None,
        model: model.clone(),
        args: (model, filter).into(),
        selected_fields,
        nested: vec![],
        selection_order: vec![],
        options: QueryOptions::none(),
        relation_load_strategy: query_structure::RelationLoadStrategy::Query,
    });

    Query::Read(read_query)
}

fn get_selected_fields(model: &Model, selection: FieldSelection) -> FieldSelection {
    // Always fetch the primary identifier as well.
    let primary_model_id = model.primary_identifier();

    if selection != primary_model_id {
        primary_model_id.merge(selection)
    } else {
        selection
    }
}

/// Adds a read query to the query graph that finds related records by parent ID.
/// Connects the parent node and the read node with an edge, which takes care of the
/// node transformation based on the parent ID.
///
/// Optionally, a filter can be passed that narrows down the child selection.
///
/// Returns a `NodeRef` to the newly created read node.
///
/// ```text
/// ┌ ─ ─ ─ ─ ─ ─ ─ ─ ┐
///       Parent
/// └ ─ ─ ─ ─ ─ ─ ─ ─ ┘
///          │
///          ▼
/// ┌─────────────────┐
/// │  Read Children  │
/// └─────────────────┘
///```
///
/// ## Example
/// Given two models, `Blog` and `Post`, where a blog has many posts, and a post has one block.
///
/// If the caller wants to query posts by blog ID:
/// - `parent_node` needs to return a blog ID during execution.
/// - `parent_relation_field` is the field on the `Blog` model, e.g. `posts`.
/// - `filter` narrows down posts, e.g. posts where their titles start with a given string.
pub(crate) fn insert_find_children_by_parent_node<T>(
    graph: &mut QueryGraph,
    parent_node: &NodeRef,
    parent_relation_field: &RelationFieldRef,
    filter: T,
) -> QueryGraphBuilderResult<NodeRef>
where
    T: Into<Filter>,
{
    let parent_model_id = parent_relation_field.model().primary_identifier();
    let parent_linking_fields = parent_relation_field.linking_fields();
    let selection = parent_model_id.merge(parent_linking_fields);
    let child_model = parent_relation_field.related_model();

    let selected_fields = get_selected_fields(
        &parent_relation_field.related_model(),
        parent_relation_field.related_field().linking_fields(),
    );

    let read_children_node = graph.create_node(Query::Read(ReadQuery::RelatedRecordsQuery(RelatedRecordsQuery {
        name: "find_children_by_parent".to_owned(),
        alias: None,
        parent_field: parent_relation_field.clone(),
        parent_results: None,
        args: (child_model, filter).into(),
        selected_fields,
        nested: vec![],
        selection_order: vec![],
    })));

    graph.create_edge(
        parent_node,
        &read_children_node,
        QueryGraphDependency::ProjectedDataDependency(
            selection,
            Box::new(|mut read_children_node, selections| {
                if let Node::Query(Query::Read(ReadQuery::RelatedRecordsQuery(ref mut rq))) = read_children_node {
                    rq.parent_results = Some(selections);
                };

                Ok(read_children_node)
            }),
        ),
    )?;

    Ok(read_children_node)
}

/// Adds a node to read the old child, compare it to the new child and continues the graph execution only if there are diffences between the old & the new child.
/// This function is tailored for 1-1 nested connect.
pub fn insert_1to1_idempotent_connect_checks(
    graph: &mut QueryGraph,
    parent_node: &NodeRef,
    read_new_child_node: &NodeRef,
    parent_relation_field: &RelationFieldRef,
) -> QueryGraphBuilderResult<NodeRef> {
    let child_model = parent_relation_field.related_model();
    let child_model_identifier = child_model.primary_identifier();
    let relation_name = parent_relation_field.relation().name();

    let diff_node = graph.create_node(Node::Computation(Computation::empty_diff()));

    graph.create_edge(
        read_new_child_node,
        &diff_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier.clone(),
            Box::new(move |mut diff_node, child_ids| {
                if child_ids.is_empty() {
                    return Err(QueryGraphBuilderError::RecordNotFound(format!(
                        "No '{}' record to connect was found for a nested connect on one-to-one relation '{}'.",
                        child_model.name(),
                        relation_name
                    )));
                }

                if let Node::Computation(Computation::Diff(ref mut diff)) = diff_node {
                    diff.right = child_ids.into_iter().collect();
                }

                Ok(diff_node)
            }),
        ),
    )?;
    let read_old_child_node =
        insert_find_children_by_parent_node(graph, parent_node, parent_relation_field, Filter::empty())?;

    graph.create_edge(
        &read_old_child_node,
        &diff_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier,
            Box::new(move |mut diff_node, child_ids| {
                if let Node::Computation(Computation::Diff(ref mut diff)) = diff_node {
                    diff.left = child_ids.into_iter().collect();
                }

                Ok(diff_node)
            }),
        ),
    )?;
    let if_node = graph.create_node(Flow::default_if());

    graph.create_edge(
        &diff_node,
        &if_node,
        QueryGraphDependency::DataDependency(Box::new(move |if_node, result| {
            let diff_result = result.as_diff_result().unwrap();
            let should_connect = !diff_result.is_empty();

            if let Node::Flow(Flow::If(_)) = if_node {
                Ok(Node::Flow(Flow::If(Box::new(move || should_connect))))
            } else {
                unreachable!()
            }
        })),
    )?;
    let empty_node = graph.create_node(Node::Empty);

    graph.create_edge(&if_node, &empty_node, QueryGraphDependency::Then)?;

    Ok(empty_node)
}

/// Creates an update many records query node and adds it to the query graph.
/// Used to have a skeleton update node in the graph that can be further transformed during query execution based
/// on available information.
///
/// No edges are created.
pub fn update_records_node_placeholder<T>(graph: &mut QueryGraph, filter: T, model: Model) -> NodeRef
where
    T: Into<Filter>,
{
    let args = WriteArgs::new_empty(crate::executor::get_request_now());
    let filter = filter.into();
    let record_filter = filter.into();

    let ur = UpdateManyRecords {
        model,
        record_filter,
        args,
    };

    graph.create_node(Query::Write(WriteQuery::UpdateManyRecords(ur)))
}

/// Inserts checks and disconnects for existing models for a 1:1 relation.
/// Expects that the parent node returns a valid ID for the model the `parent_relation_field` is located on.
///
/// Params:
/// `parent_node`: Node that provides the parent id for the find query and where the checks are appended to in the graph.
/// `parent_relation_field`: Field on the parent model to find children.
///
/// ```text
/// ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///           Parent         │
/// └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///              :
///              ▼
/// ┌────────────────────────┐
/// │      Read related      │──┐
/// └────────────────────────┘  │
///              │              │
///              ▼              │
/// ┌────────────────────────┐  │
/// │ If p > 0 && c. inlined │  │
/// └────────────────────────┘  │
///         then │              │
///              ▼              │
/// ┌────────────────────────┐  │
/// │    Update ex. child    │◀─┘
/// └────────────────────────┘
/// ```
///
/// The edge between `Read Related` and `If` fails on node count > 0 if child side is required.
///
/// We only need to actually update ("disconnect") the existing model if
/// the relation is also inlined on that models side, so we put that check into the if flow.
///
/// Returns a `NodeRef` to the "Read Related" node in the graph illustrated above.
pub fn insert_existing_1to1_related_model_checks(
    graph: &mut QueryGraph,
    parent_node: &NodeRef,
    parent_relation_field: &RelationFieldRef,
) -> QueryGraphBuilderResult<NodeRef> {
    let child_model_identifier = parent_relation_field.related_model().primary_identifier();
    let child_linking_fields = parent_relation_field.related_field().linking_fields();

    let child_model = parent_relation_field.related_model();
    let child_side_required = parent_relation_field.related_field().is_required();
    let relation_inlined_parent = parent_relation_field.relation_is_inlined_in_parent();
    let rf = parent_relation_field.clone();

    // Note: Also creates the edge between `parent` and the new node.
    let read_existing_children =
        insert_find_children_by_parent_node(graph, parent_node, parent_relation_field, Filter::empty())?;

    let update_existing_child = update_records_node_placeholder(graph, Filter::empty(), child_model);
    let if_node = graph.create_node(Flow::default_if());

    graph.create_edge(
        &read_existing_children,
        &if_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier.clone(),
            Box::new(move |if_node, child_ids| {
                // If the other side ("child") requires the connection, we need to make sure that there isn't a child already connected
                // to the parent, as that would violate the other childs relation side.
                if !child_ids.is_empty() && child_side_required {
                    return Err(QueryGraphBuilderError::RelationViolation(rf.into()));
                }

                if let Node::Flow(Flow::If(_)) = if_node {
                    // If the relation is inlined in the parent, we need to update the old parent and null out the relation (i.e. "disconnect").
                    Ok(Node::Flow(Flow::If(Box::new(move || {
                        !relation_inlined_parent && !child_ids.is_empty()
                    }))))
                } else {
                    unreachable!()
                }
            }),
        ),
    )?;

    let relation_name = parent_relation_field.relation().name();

    graph.create_edge(&if_node, &update_existing_child, QueryGraphDependency::Then)?;
    graph.create_edge(
        &read_existing_children,
        &update_existing_child,
        QueryGraphDependency::ProjectedDataDependency(child_model_identifier, Box::new(move |mut update_existing_child, mut child_ids| {
            // This has to succeed or the if-then node wouldn't trigger.
            let child_id = match child_ids.pop() {
                Some(pid) => Ok(pid),
                None => Err(QueryGraphBuilderError::RecordNotFound(format!(
                    "No parent record (needed to update the previous parent) was found for a nested connect on relation '{relation_name}' ."
                ))),
            }?;

            if let Node::Query(Query::Write(ref mut wq)) = update_existing_child {
                wq.inject_result_into_args(SelectionResult::from(&child_linking_fields));
            }

            if let Node::Query(Query::Write(WriteQuery::UpdateManyRecords(ref mut ur))) = update_existing_child {
                ur.record_filter = child_id.into();
            }

            Ok(update_existing_child)
         })))?;

    Ok(read_existing_children)
}

/// Inserts emulated referential actions for `onDelete` into the graph.
/// All relations that refer to the `model` row(s) being deleted are checked for their desired emulation and inserted accordingly.
/// Those checks fail at runtime and are inserted as children to `node_providing_ids` node.
///
/// This function is usually part of a delete (`deleteOne` or `deleteMany`).
/// Expects `node_providing_ids` to return one or more IDs (for records of `model`) to be checked.
///
/// Returns a list of leaf nodes, each corresponding to a section of the tree related to the individual check.
///
/// Resulting graph (all emulations):
/// ```text
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///    |   Node providing   │
///    │   ids to delete     ─────────────────┬─────────────────────────────┬────────────────────────────────────────┐
///     ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘                 │                             │                                        │
///               │                           │                             │                                        │
///               ▼                           ▼                             ▼                                        ▼
///    ┌────────────────────┐      ┌────────────────────┐        ┌────────────────────┐                   ┌────────────────────┐
///    │Find Connected Model│      │Find Connected Model│        │Find Connected Model│                   │Find Connected Model│
///    │    A (Restrict)    │      │    B (Restrict)    │     ┌──│    C (SetNull)     │                ┌──│    D (Cascade)     │
///    └────────────────────┘      └────────────────────┘     │  └────────────────────┘                │  └────────────────────┘
///               │                           │               │             │                          │             │
///        Fail if│> 0                 Fail if│> 0            │             ▼                          │             │
///               │                           │               │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─               │             ▼
///               ▼                           ▼               │  ┌────────────────────┐ │              │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///    ┌────────────────────┐      ┌────────────────────┐     ││ │  Insert onUpdate   │                │  ┌────────────────────┐ │
///    │       Empty        │      │       Empty        │     │  │ emulation subtree  │ │              ││ │  Insert onDelete   │
///    └────────────────────┘      └────────────────────┘     ││ │for relations using │                │  │ emulation subtree  │ │
///                                                           │  │the foreign key that│ │              ││ │ for all relations  │
///                                                           ││ │    was updated.    │                │  │   pointing to D.   │ │
///                                                           │  └────────────────────┘ │              ││ └────────────────────┘
///                                                           │└ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─               │ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘
///                                                           │             │                          │             │
///                                                           │             │                          │             │
///                                                           │             ▼                          │             ▼
///                                                           │  ┌────────────────────┐                │  ┌────────────────────┐
///                                                           │  │ Update Cs (set FK  │                └─▶│     Delete Cs      │
///                                                           └─▶│       null)        │                   └────────────────────┘
///                                                              └────────────────────┘
/// ```
pub(crate) fn insert_emulated_on_delete(
    graph: &mut QueryGraph,
    query_schema: &QuerySchema,
    model_to_delete: &Model,
    node_providing_ids: &NodeRef,
) -> QueryGraphBuilderResult<Vec<NodeRef>> {
    // If the connector uses the `RelationMode::ForeignKeys` mode, we do not do any checks / emulation.
    if query_schema.relation_mode().uses_foreign_keys() {
        return Ok(vec![]);
    }

    // If the connector uses the `RelationMode::Prisma` mode, then the emulation will kick in.
    let internal_model = &model_to_delete.dm;
    let relation_fields = internal_model.fields_pointing_to_model(model_to_delete);
    let mut leaf_nodes = vec![];
    for rf in relation_fields {
        match rf.relation().on_delete() {
            ReferentialAction::NoAction | ReferentialAction::Restrict => {
                let node = emulate_on_delete_restrict(graph, &rf, node_providing_ids)?;
                leaf_nodes.push(node);
            }
            ReferentialAction::SetNull => {
                let node = emulate_on_delete_set_null(graph, query_schema, &rf, node_providing_ids)?;
                if let Some(node) = node {
                    leaf_nodes.push(node);
                }
            }
            ReferentialAction::Cascade => {
                let node = emulate_on_delete_cascade(graph, &rf, query_schema, node_providing_ids)?;
                leaf_nodes.push(node);
            }
            x => panic!("Unsupported referential action emulation: {x}"),
        }
    }

    Ok(leaf_nodes)
}

/// Creates restrict emulations as child nodes to `node_providing_ids`.
/// `relation_field` is the relation field pointing to the model to be deleted/updated.
/// Returns leaf node in the created subtree.
///
///
/// ```text
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///    |   Node providing   │
///    │   ids to delete    |
///     ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘
///               │
///               ▼
///    ┌────────────────────┐
///    │Find Connected Model│
///    │     (Restrict)     │
///    └────────────────────┘
///               │
///        Fail if│> 0
///               │
///               ▼
///    ┌────────────────────┐
///    │       Empty        │
///    └────────────────────┘
/// ```
pub fn emulate_on_delete_restrict(
    graph: &mut QueryGraph,
    relation_field: &RelationFieldRef,
    node_providing_ids: &NodeRef,
) -> QueryGraphBuilderResult<NodeRef> {
    let noop_node = graph.create_node(Node::Empty);
    let relation_field = relation_field.related_field();
    let child_model_identifier = relation_field.related_model().primary_identifier();
    let read_node = insert_find_children_by_parent_node(graph, node_providing_ids, &relation_field, Filter::empty())?;

    graph.create_edge(
        &read_node,
        &noop_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier,
            Box::new(move |noop_node, child_ids| {
                if !child_ids.is_empty() {
                    return Err(QueryGraphBuilderError::RelationViolation((relation_field).into()));
                }

                Ok(noop_node)
            }),
        ),
    )?;

    Ok(noop_node)
}

/// Creates cascade emulations as child nodes to `node_providing_ids`.
/// `relation_field` is the relation field pointing to the model to be deleted.
/// Recurses into the deletion emulation to ensure that subsequent deletions are handled correctly as well.
/// Returns leaf node in the created subtree.
///
/// ```text
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///    |   Node providing   │
///    │   ids to delete    |
///     ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘
///               │
///               ▼
///    ┌────────────────────┐
///    │Find Connected Model│
/// ┌──│     (Cascade)      │
/// │  └────────────────────┘
/// │             │
/// │             ▼
/// │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
/// │  ┌────────────────────┐ │
/// ││ │  Insert onDelete   │
/// │  │ emulation subtree  │ │
/// ││ │ for all relations  │
/// │  │  pointing to the   │ │
/// ││ │  Connected Model.  │
/// │  └────────────────────┘ │
/// │└ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
/// │             │
/// │             ▼
/// │  ┌────────────────────┐
/// └─▶│  Delete children   │
///    └────────────────────┘
/// ```
pub fn emulate_on_delete_cascade(
    graph: &mut QueryGraph,
    relation_field: &RelationFieldRef, // This is the field _on the other model_ for cascade.
    query_schema: &QuerySchema,
    node_providing_ids: &NodeRef,
) -> QueryGraphBuilderResult<NodeRef> {
    let dependent_model = relation_field.model();
    let parent_relation_field = relation_field.related_field();
    let child_model_identifier = parent_relation_field.related_model().primary_identifier();

    // Records that need to be deleted for the cascade.
    let dependent_records_node =
        insert_find_children_by_parent_node(graph, node_providing_ids, &parent_relation_field, Filter::empty())?;

    let delete_query = WriteQuery::DeleteManyRecords(DeleteManyRecords {
        model: dependent_model.clone(),
        record_filter: RecordFilter::empty(),
    });

    let delete_dependents_node = graph.create_node(Query::Write(delete_query));

    let dependencies = insert_emulated_on_delete(graph, query_schema, &dependent_model, &dependent_records_node)?;
    create_execution_order_edges(graph, dependencies, delete_dependents_node)?;

    graph.create_edge(
        &dependent_records_node,
        &delete_dependents_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier,
            Box::new(move |mut delete_dependents_node, dependent_ids| {
                if let Node::Query(Query::Write(WriteQuery::DeleteManyRecords(ref mut dmr))) = delete_dependents_node {
                    dmr.record_filter = dependent_ids.into();
                }

                Ok(delete_dependents_node)
            }),
        ),
    )?;

    Ok(delete_dependents_node)
}

/// Creates set null emulations as child nodes to `node_providing_ids`.
/// `relation_field` is the relation field pointing to the model to be deleted.
/// Recurses into the deletion emulation to ensure that subsequent deletions are handled correctly as well.
/// Returns leaf node in the created subtree. If no subtree was created, returns `None`.
///
/// ```text
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐
///    |  Node providing   │
///    │   ids to delete   |
///     ─ ─ ─ ─ ─ ─ ─ ─ ─  ┘
///               │
///               ▼
///    ┌────────────────────┐
///    │Find Connected Model│
/// ┌──│     (SetNull)      │
/// │  └────────────────────┘
/// │             │
/// │             ▼
/// │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
/// │  ┌────────────────────┐ │
/// ││ │  Insert onUpdate   │
/// │  │ emulation subtree  │ │
/// ││ │for relations using │
/// │  │the foreign key that│ │
/// ││ │    was updated.    │
/// │  └────────────────────┘ │
/// │└ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
/// │             │
/// │             ▼
/// │  ┌────────────────────┐
/// │  │Update children (set│
/// └─▶│      FK null)      │
///    └────────────────────┘
/// ```
pub fn emulate_on_delete_set_null(
    graph: &mut QueryGraph,
    query_schema: &QuerySchema,
    relation_field: &RelationFieldRef,
    node_providing_ids: &NodeRef,
) -> QueryGraphBuilderResult<Option<NodeRef>> {
    let dependent_model = relation_field.model();
    let parent_relation_field = relation_field.related_field();
    let child_model_identifier = parent_relation_field.related_model().primary_identifier();
    let child_fks = relation_field.left_scalars();

    let child_update_args: IndexMap<_, _> = child_fks
        .iter()
        // Only the nullable fks should be updated to null
        .filter(|sf| !sf.is_required())
        .map(|child_fk| {
            (
                DatasourceFieldName::from(child_fk),
                WriteOperation::scalar_set(PrismaValue::Null),
            )
        })
        .collect();

    if child_update_args.is_empty() {
        return Ok(None);
    }

    // Records that need to be updated for the cascade.
    let dependent_records_node =
        insert_find_children_by_parent_node(graph, node_providing_ids, &parent_relation_field, Filter::empty())?;

    let set_null_query = WriteQuery::UpdateManyRecords(UpdateManyRecords {
        model: dependent_model.clone(),
        record_filter: RecordFilter::empty(),
        args: WriteArgs::new(child_update_args, crate::executor::get_request_now()),
    });

    let set_null_dependents_node = graph.create_node(Query::Write(set_null_query));

    graph.create_edge(
        &dependent_records_node,
        &set_null_dependents_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier,
            Box::new(move |mut set_null_dependents_node, dependent_ids| {
                if let Node::Query(Query::Write(WriteQuery::UpdateManyRecords(ref mut dmr))) = set_null_dependents_node
                {
                    dmr.record_filter = dependent_ids.into();
                }

                Ok(set_null_dependents_node)
            }),
        ),
    )?;

    // Collect other relation fields that share at least one common foreign key with the relation field we're dealing with
    let overlapping_relation_fields = collect_overlapping_relation_fields(dependent_model, relation_field);

    // For every relation fields sharing one common foreign key on the updated model, apply onUpdate emulations.
    for rf in overlapping_relation_fields {
        match rf.relation().on_update() {
            ReferentialAction::NoAction | ReferentialAction::Restrict => {
                emulate_on_update_restrict(graph, &rf, &dependent_records_node, &set_null_dependents_node)?
            }
            ReferentialAction::SetNull => emulate_on_update_set_null(
                graph,
                &rf,
                query_schema,
                &dependent_records_node,
                &set_null_dependents_node,
            )?,
            ReferentialAction::Cascade => emulate_on_update_cascade(
                graph,
                &rf,
                query_schema,
                &dependent_records_node,
                &set_null_dependents_node,
            )?,
            x => panic!("Unsupported referential action emulation: {x}"),
        }
    }

    Ok(Some(set_null_dependents_node))
}

/// Creates a `QueryGraphDependency::ExecutionOrder` edge between each node in the `from` list and `to` node.
pub fn create_execution_order_edges(
    graph: &mut QueryGraph,
    from: Vec<NodeRef>,
    to: NodeRef,
) -> QueryGraphBuilderResult<()> {
    for node in from {
        graph.create_edge(&node, &to, QueryGraphDependency::ExecutionOrder)?;
    }
    Ok(())
}

/// Inserts set null emulations into the graph between `parent_node` and `child_node`.
/// `relation_field` is the relation field pointing to the model to be deleted.
/// Recurses into the update emulation to ensure that subsequent updates are handled correctly as well.
///
/// ```text
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///            Parent       │
///    │  (ids to del/upd)   ─ ┐
///     ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘
///               │            │
///               ▼
///    ┌────────────────────┐  │
///    │Find Connected Model│
/// ┌──│     (SetNull)      │  │
/// │  └────────────────────┘
/// │             │            │
/// │             ▼
/// │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ │
/// │  ┌────────────────────┐  │
/// ││ │  Insert onUpdate   │  │
/// │  │ emulation subtree  │  │
/// ││ │for relations using │  │
/// │  │the foreign key that│  │
/// ││ │    was updated.    │  │
/// │  └────────────────────┘  │
/// │└ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ │
/// │             │
/// │             ▼            │
/// │  ┌────────────────────┐
/// │  │Update children (set│  │
/// └─▶│      FK null)      │
///    └────────────────────┘  │
///               │
///               ▼            │
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///           Update        │◀ ┘
///    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
/// ```
pub fn emulate_on_update_set_null(
    graph: &mut QueryGraph,
    relation_field: &RelationFieldRef,
    query_schema: &QuerySchema,
    parent_node: &NodeRef,
    child_node: &NodeRef,
) -> QueryGraphBuilderResult<()> {
    let dependent_model = relation_field.model();
    let parent_relation_field = relation_field.related_field();
    let child_model_identifier = parent_relation_field.related_model().primary_identifier();

    // Only the nullable fks should be updated to null
    let (parent_pks, child_fks) = if relation_field.is_inlined_on_enclosing_model() {
        (relation_field.referenced_fields(), relation_field.scalar_fields())
    } else {
        (
            relation_field.related_field().scalar_fields(),
            relation_field.related_field().referenced_fields(),
        )
    };

    // Unwraps are safe as in this stage, no node content can be replaced.
    let parent_update_args = extract_update_args(graph.node_content(child_node).unwrap());
    let parent_updates_pk = parent_pks
        .into_iter()
        .any(|parent_pk| parent_update_args.get_field_value(parent_pk.db_name()).is_some());

    if !parent_updates_pk {
        return Ok(());
    }

    let child_update_args: IndexMap<_, _> = child_fks
        .iter()
        .filter(|child_fk| !child_fk.is_required())
        .map(|child_fk| {
            (
                DatasourceFieldName::from(child_fk),
                WriteOperation::scalar_set(PrismaValue::Null),
            )
        })
        .collect();

    // Records that need to be updated for the cascade.
    let dependent_records_node =
        insert_find_children_by_parent_node(graph, parent_node, &parent_relation_field, Filter::empty())?;

    let set_null_query = WriteQuery::UpdateManyRecords(UpdateManyRecords {
        model: dependent_model.clone(),
        record_filter: RecordFilter::empty(),
        args: WriteArgs::new(child_update_args, crate::executor::get_request_now()),
    });

    let set_null_dependents_node = graph.create_node(Query::Write(set_null_query));

    graph.create_edge(
        &dependent_records_node,
        &set_null_dependents_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier,
            Box::new(move |mut set_null_dependents_node, dependent_ids| {
                if let Node::Query(Query::Write(WriteQuery::UpdateManyRecords(ref mut dmr))) = set_null_dependents_node
                {
                    dmr.record_filter = dependent_ids.into();
                }

                Ok(set_null_dependents_node)
            }),
        ),
    )?;

    graph.create_edge(
        &set_null_dependents_node,
        child_node,
        QueryGraphDependency::ExecutionOrder,
    )?;

    // Collect other relation fields that share at least one common foreign key with the relation field we're dealing with
    let overlapping_relation_fields = collect_overlapping_relation_fields(dependent_model, relation_field);

    // For every relation fields sharing one common foreign key, recurse
    for rf in overlapping_relation_fields {
        match rf.relation().on_update() {
            ReferentialAction::NoAction | ReferentialAction::Restrict => {
                emulate_on_update_restrict(graph, &rf, &dependent_records_node, &set_null_dependents_node)?
            }
            ReferentialAction::SetNull => emulate_on_update_set_null(
                graph,
                &rf,
                query_schema,
                &dependent_records_node,
                &set_null_dependents_node,
            )?,
            ReferentialAction::Cascade => emulate_on_update_cascade(
                graph,
                &rf,
                query_schema,
                &dependent_records_node,
                &set_null_dependents_node,
            )?,
            x => panic!("Unsupported referential action emulation: {x}"),
        }
    }

    Ok(())
}

pub fn emulate_on_update_restrict(
    graph: &mut QueryGraph,
    relation_field: &RelationFieldRef,
    parent_node: &NodeRef,
    child_node: &NodeRef,
) -> QueryGraphBuilderResult<()> {
    let noop_node = graph.create_node(Node::Empty);
    let relation_field = relation_field.related_field();
    let child_model_identifier = relation_field.related_model().primary_identifier();
    let read_node = insert_find_children_by_parent_node(graph, parent_node, &relation_field, Filter::empty())?;

    let linking_fields = relation_field.linking_fields();

    // Unwraps are safe as in this stage, no node content can be replaced.
    let parent_update_args = extract_update_args(graph.node_content(child_node).unwrap());

    let linking_fields_updated = linking_fields
        .into_iter()
        .any(|parent_pk| parent_update_args.get_field_value(&parent_pk.db_name()).is_some());

    graph.create_edge(
        &read_node,
        &noop_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier,
            Box::new(move |noop_node, child_ids| {
                // If any linking fields are to be updated and there are already connected children, then fail
                if !child_ids.is_empty() && linking_fields_updated {
                    return Err(QueryGraphBuilderError::RelationViolation((relation_field).into()));
                }

                Ok(noop_node)
            }),
        ),
    )?;

    // Edge from empty node to the child (delete).
    graph.create_edge(&noop_node, child_node, QueryGraphDependency::ExecutionOrder)?;

    Ok(())
}

/// Inserts emulated referential actions for `onUpdate` into the graph.
/// All relations that refer to the `model` row(s) being deleted are checked for their desired emulation and inserted accordingly.
/// Right now, supported modes are `Restrict` and `SetNull` (cascade will follow).
/// Those checks fail at runtime and are inserted between `parent_node` and `child_node`.
///
/// This function is usually part of a delete (`deleteOne` or `deleteMany`).
/// Expects `parent_node` to return one or more IDs (for records of `model`) to be checked.
///
/// Resulting graph (all emulations):
/// ```text
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///            Parent       │
///    │  (ids to update)
///     ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘
///               │
///               ▼
///    ┌────────────────────┐
/// ┌ ─│     Join node      │─────────────────┬─────────────────────────────┬────────────────────────────────────────┐
///    └────────────────────┘                 │                             │                                        │
/// │             │                           │                             │                                        │
///               │                           │                             │                                        │
/// │             ▼                           ▼                             ▼                                        ▼
///    ┌────────────────────┐      ┌────────────────────┐        ┌────────────────────┐                   ┌────────────────────┐
/// │  │Find Connected Model│      │Find Connected Model│        │Find Connected Model│                   │Find Connected Model│
///    │    A (Restrict)    │      │    B (Restrict)    │     ┌──│    C (SetNull)     │                ┌──│    D (Cascade)     │
/// │  └────────────────────┘      └────────────────────┘     │  └────────────────────┘                │  └────────────────────┘
///               │                           │               │             │                          │             │
/// │      Fail if│> 0                 Fail if│> 0            │             ▼                          │             │
///               │                           │               │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─               │             ▼
/// │             ▼                           ▼               │  ┌────────────────────┐ │              │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///    ┌────────────────────┐      ┌────────────────────┐     ││ │  Insert onUpdate   │                │  ┌────────────────────┐ │
/// │  │       Empty        │      │       Empty        │     │  │ emulation subtree  │ │              ││ │  Insert onUpdate   │
///    └────────────────────┘      └────────────────────┘     ││ │for relations using │                │  │ emulation subtree  │ │
/// │             │                           │               │  │the foreign key that│ │              ││ │ for all relations  │
///               │                           │               ││ │    was updated.    │                │  │   pointing to D.   │ │
/// │             │                           │               │  └────────────────────┘ │              ││ └────────────────────┘
///               │                           │               │└ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─               │ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘
/// │             │                           │               │             │                          │             │
///               │                           │               │             │                          │             │
/// │             ▼                           │               │             ▼                          │             ▼
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─                  │               │  ┌────────────────────┐                │  ┌────────────────────┐
/// └ ▶        Update       │◀────────────────┘               │  │ Update Cs (set FK  │                └─▶│     Update Cs      │
///    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─                                  └─▶│       null)        │                   └────────────────────┘
///               ▲                                              └────────────────────┘                              │
///               │                                                         │                                        │
///               └─────────────────────────────────────────────────────────┴────────────────────────────────────────┘
/// ```
pub fn insert_emulated_on_update_with_intermediary_node(
    graph: &mut QueryGraph,
    query_schema: &QuerySchema,
    model_to_update: &Model,
    parent_node: &NodeRef,
    child_node: &NodeRef,
) -> QueryGraphBuilderResult<Option<NodeRef>> {
    // If the connector uses the `RelationMode::ForeignKeys` mode, we do not do any checks / emulation.
    if query_schema.relation_mode().uses_foreign_keys() {
        return Ok(None);
    }

    // If the connector uses the `RelationMode::Prisma` mode, then the emulation will kick in.
    let internal_model = &model_to_update.dm;
    let relation_fields = internal_model.fields_pointing_to_model(model_to_update);

    let join_node = graph.create_node(Flow::Return(None));

    graph.create_edge(
        parent_node,
        &join_node,
        QueryGraphDependency::ProjectedDataDependency(
            model_to_update.primary_identifier(),
            Box::new(move |return_node, parent_ids| {
                if let Node::Flow(Flow::Return(_)) = return_node {
                    Ok(Node::Flow(Flow::Return(Some(parent_ids))))
                } else {
                    Ok(return_node)
                }
            }),
        ),
    )?;

    for rf in relation_fields {
        match rf.relation().on_update() {
            ReferentialAction::NoAction | ReferentialAction::Restrict => {
                emulate_on_update_restrict(graph, &rf, &join_node, child_node)?
            }
            ReferentialAction::SetNull => emulate_on_update_set_null(graph, &rf, query_schema, &join_node, child_node)?,
            ReferentialAction::Cascade => emulate_on_update_cascade(graph, &rf, query_schema, &join_node, child_node)?,
            x => panic!("Unsupported referential action emulation: {x}"),
        }
    }

    Ok(Some(join_node))
}

pub fn insert_emulated_on_update(
    graph: &mut QueryGraph,
    query_schema: &QuerySchema,
    model_to_update: &Model,
    parent_node: &NodeRef,
    child_node: &NodeRef,
) -> QueryGraphBuilderResult<()> {
    // If the connector uses the `RelationMode::ForeignKeys` mode, we do not do any checks / emulation.
    if query_schema.relation_mode().uses_foreign_keys() {
        return Ok(());
    }

    // If the connector uses the `RelationMode::Prisma` mode, then the emulation will kick in.
    let internal_model = &model_to_update.dm;
    let relation_fields = internal_model.fields_pointing_to_model(model_to_update);

    for rf in relation_fields {
        match rf.relation().on_update() {
            ReferentialAction::NoAction | ReferentialAction::Restrict => {
                emulate_on_update_restrict(graph, &rf, parent_node, child_node)?
            }
            ReferentialAction::SetNull => {
                emulate_on_update_set_null(graph, &rf, query_schema, parent_node, child_node)?
            }
            ReferentialAction::Cascade => emulate_on_update_cascade(graph, &rf, query_schema, parent_node, child_node)?,
            x => panic!("Unsupported referential action emulation: {x}"),
        }
    }

    Ok(())
}

fn extract_update_args(parent_node: &Node) -> &WriteArgs {
    if let Node::Query(Query::Write(q)) = parent_node {
        match q {
            WriteQuery::UpdateRecord(one) => one.args(),
            WriteQuery::UpdateManyRecords(many) => &many.args,
            _ => panic!("Parent operation for update emulation is not an update."),
        }
    } else {
        panic!("Parent operation for update emulation is not a query.")
    }
}

/// Inserts cascade emulations into the graph between `parent_node` and `child_node`.
/// `relation_field` is the relation field pointing to the model to be deleted.
/// Recurses into the update emulation to ensure that subsequent updates are handled correctly as well.
///
/// ```text
//    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///            Parent       │
///    │  (ids to update)    ─ ┐
///     ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘
///               │            │
///               ▼
///    ┌────────────────────┐  │
///    │Find Connected Model│
/// ┌──│     (Cascade)      │  │
/// │  └────────────────────┘
/// │             │            │
/// │             ▼
/// │┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ │
/// │  ┌────────────────────┐ │
/// ││ │  Insert onUpdate   │  │
/// │  │ emulation subtree  │ │
/// ││ │ for all relations  │  │
/// │  │  pointing to the   │ │
/// ││ │  Connected Model.  │  │
/// │  └────────────────────┘ │
/// │└ ─ ─ ─ ─ ─ ─│─ ─ ─ ─ ─ ─ │
/// │             │
/// │             │            │
/// │             ▼
/// │  ┌────────────────────┐  │
/// └─▶│  Update children   │
///    └────────────────────┘  │
///               │
///               ▼            │
///    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
///            Update       │◀ ┘
///    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
/// ```
pub fn emulate_on_update_cascade(
    graph: &mut QueryGraph,
    relation_field: &RelationFieldRef, // This is the field _on the other model_ for cascade.
    query_schema: &QuerySchema,
    parent_node: &NodeRef,
    child_node: &NodeRef,
) -> QueryGraphBuilderResult<()> {
    let dependent_model = relation_field.model();
    let parent_relation_field = relation_field.related_field();
    let child_model_identifier = parent_relation_field.related_model().primary_identifier();
    let (parent_pks, child_fks) = if relation_field.is_inlined_on_enclosing_model() {
        (relation_field.referenced_fields(), relation_field.scalar_fields())
    } else {
        (
            relation_field.related_field().scalar_fields(),
            relation_field.related_field().referenced_fields(),
        )
    };

    // Unwraps are safe as in this stage, no node content can be replaced.
    let parent_update_args = extract_update_args(graph.node_content(child_node).unwrap());

    // Computes update arguments for child based on parent update arguments
    let child_update_args: Vec<_> = parent_pks
        .into_iter()
        .zip(child_fks)
        .filter_map(|(parent_pk, child_fk)| {
            parent_update_args
                .get_field_value(parent_pk.db_name())
                .map(|value| (DatasourceFieldName::from(&child_fk), value.clone()))
        })
        .collect();

    // If nothing was found to be updated for the child, stop here
    if child_update_args.is_empty() {
        return Ok(());
    }

    // Records that need to be updated for the cascade.
    let dependent_records_node =
        insert_find_children_by_parent_node(graph, parent_node, &parent_relation_field, Filter::empty())?;

    let update_query = WriteQuery::UpdateManyRecords(UpdateManyRecords {
        model: dependent_model.clone(),
        record_filter: RecordFilter::empty(),
        args: WriteArgs::new(
            child_update_args.into_iter().collect(),
            crate::executor::get_request_now(),
        ),
    });

    let update_dependents_node = graph.create_node(Query::Write(update_query));

    insert_emulated_on_update(
        graph,
        query_schema,
        &dependent_model,
        &dependent_records_node,
        &update_dependents_node,
    )?;

    graph.create_edge(
        &dependent_records_node,
        &update_dependents_node,
        QueryGraphDependency::ProjectedDataDependency(
            child_model_identifier,
            Box::new(move |mut update_dependents_node, dependent_ids| {
                if let Node::Query(Query::Write(WriteQuery::UpdateManyRecords(ref mut dmr))) = update_dependents_node {
                    dmr.record_filter = dependent_ids.into();
                }

                Ok(update_dependents_node)
            }),
        ),
    )?;

    graph.create_edge(
        &update_dependents_node,
        child_node,
        QueryGraphDependency::ExecutionOrder,
    )?;

    Ok(())
}

/// Collect relation fields that share at least one common foreign key with `relation_field`.
pub(crate) fn collect_overlapping_relation_fields(
    model: Model,
    relation_field: &RelationFieldRef,
) -> Vec<RelationFieldRef> {
    let child_fks = relation_field.left_scalars();

    let dependent_relation_fields: Vec<_> = model
        .fields()
        .relation()
        .filter(|rf| rf != relation_field)
        .filter(|rf| {
            let fks = rf.left_scalars();

            fks.iter().any(|fk| child_fks.contains(fk))
        })
        .map(|rf| match rf.is_inlined_on_enclosing_model() {
            true => rf,
            false => rf.related_field(),
        })
        .collect();

    dependent_relation_fields
}