summaryrefslogtreecommitdiff
path: root/tests/modeltests/raw_query/fixtures/raw_query_books.json
blob: 35879aa5eb86a004752ddd17ca416fc707c1fb2f (plain)
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
[
    {
        "pk": 1,
        "model": "raw_query.author",
        "fields": {
            "dob": "1950-09-20",
            "first_name": "Joe",
            "last_name": "Smith"
        }
    },
    {
        "pk": 2,
        "model": "raw_query.author",
        "fields": {
            "dob": "1920-04-02",
            "first_name": "Jill",
            "last_name": "Doe"
        }
    },
    {
        "pk": 3,
        "model": "raw_query.author",
        "fields": {
            "dob": "1986-01-25",
            "first_name": "Bob",
            "last_name": "Smith"
        }
    },
    {
        "pk": 4,
        "model": "raw_query.author",
        "fields": {
            "dob": "1932-05-10",
            "first_name": "Bill",
            "last_name": "Jones"
        }
    },
    {
        "pk": 1,
        "model": "raw_query.book",
        "fields": {
            "author": 1,
            "title": "The awesome book",
            "paperback": false,
            "opening_line": "It was a bright cold day in April and the clocks were striking thirteen."
        }
    },
    {
        "pk": 2,
        "model": "raw_query.book",
        "fields": {
            "author": 1,
            "title": "The horrible book",
            "paperback": true,
            "opening_line": "On an evening in the latter part of May a middle-aged man was walking homeward from Shaston to the village of Marlott, in the adjoining Vale of Blakemore, or Blackmoor."
        }
    },
    {
        "pk": 3,
        "model": "raw_query.book",
        "fields": {
            "author": 1,
            "title": "Another awesome book",
            "paperback": false,
            "opening_line": "A squat grey building of only thirty-four stories."
        }
    },
    {
        "pk": 4,
        "model": "raw_query.book",
        "fields": {
            "author": 3,
            "title": "Some other book",
            "paperback": true,
            "opening_line": "It was the day my grandmother exploded."
        }
    },
    {
        "pk": 1,
        "model": "raw_query.coffee",
        "fields": {
            "brand": "dunkin doughnuts"
        }
    },
    {
        "pk": 2,
        "model": "raw_query.coffee",
        "fields": {
            "brand": "starbucks"
        }
    },
    {
        "pk": 1,
        "model": "raw_query.reviewer",
        "fields": {
            "reviewed": [
                2,
                3,
                4
            ]
        }
    },
    {
        "pk": 2,
        "model": "raw_query.reviewer",
        "fields": {
            "reviewed": []
        }
    }
]