summaryrefslogtreecommitdiff
path: root/tests/fixtures_regress/fixtures/forward_ref_lookup.json
blob: 42e8ec0877aa547b6eab9012f4cdca9a642c4474 (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
[
    {
        "pk": "4",
        "model": "fixtures_regress.person",
        "fields": {
            "name": "Neal Stephenson"
        }
    },
    {
        "pk": "2",
        "model": "fixtures_regress.store",
        "fields": {
            "main": null,
            "name": "Amazon"
        }
    },
    {
        "pk": "3",
        "model": "fixtures_regress.store",
        "fields": {
            "main": null,
            "name": "Borders"
        }
    },
    {
        "pk": 1,
        "model": "fixtures_regress.book",
        "fields": {
            "name": "Cryptonomicon",
            "author": ["Neal Stephenson"],
            "stores": [["Amazon"], ["Borders"]]
        }
    }
]