This GraphQL query fetches All Car_Model_List_Eagles
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Eagles { car_Model_List_Eagles (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Eagles": { "results": [ { "ACL": null, "Category": "Hatchback", "Make": "Eagle", "Model": "Talon", "Year": 1996, "createdAt": "2020-01-27T21:15:31.297Z", "id": "XHWJmUDvIe", "updatedAt": "2020-01-27T21:15:31.297Z" }, { "ACL": null, "Category": "Sedan, Coupe, Wagon", "Make": "Eagle", "Model": "Summit", "Year": 1994, "createdAt": "2020-01-27T21:15:31.297Z", "id": "4V6ulLFuW5", "updatedAt": "2020-01-27T21:15:31.297Z" }, { "ACL": null, "Category": "Sedan, Coupe, Wagon", "Make": "Eagle", "Model": "Summit", "Year": 1996, "createdAt": "2020-01-27T21:15:31.297Z", "id": "lmHZASTARk", "updatedAt": "2020-01-27T21:15:31.297Z" } ] } } }