released
[dbsrgits/DBIx-Class-Fixtures.git] / t / var / configs / fetch.json
1 {
2         "might_have": {
3             "fetch": 0
4         },
5         "has_many": {
6             "fetch": 0
7         },
8         "sets": [{
9             "class": "Artist",
10             "ids": ["1"],
11             "fetch": [{
12                 "rel": "cds",
13                 "quantity": "all"
14             }]
15         },
16         
17         {
18             "class": "Artist",
19             "ids": ["32948"],
20             "fetch": [{
21                 "rel": "cds",
22                 "quantity": "all"
23             }]
24         },
25       
26         {
27             "class": "Artist",
28             "ids": ["2"],
29             "fetch": [{
30                 "rel": "cds",
31                 "cond": { "year": {">": 2002} }
32             }]
33         }]
34 }