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
use indoc::indoc;

pub fn simple_m2m() -> String {
    let schema = indoc! {
        r#"
        model ModelA {
            #id(id, String, @id)
            #m2m(manyB, ModelB[], id, String)
          }

          model ModelB {
            #id(id, String, @id)
            #m2m(manyA, ModelA[], id, String)
          }
        "#
    };

    schema.to_owned()
}

/// User <-m---n-> posts
pub fn posts_categories() -> String {
    let schema = indoc! {
        r#"
        model Post {
            #id(id, Int, @id)
            title   String
            content String @default("Wip")
            #m2m(categories, Category[], id, Int)
        }

        model Category {
            #id(id, Int, @id)
            name String
            #m2m(posts, Post[], id, Int)
        }
        "#
    };

    schema.to_owned()
}