This GraphQL query fetches All Car_Model_List_Isuzus
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Isuzus { car_Model_List_Isuzus (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Isuzus": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Isuzu", "Model": "Ascender", "Year": 2006, "createdAt": "2020-01-27T21:35:04.926Z", "id": "44ZqaGRbFj", "updatedAt": "2020-01-27T21:35:04.926Z" }, { "ACL": null, "Category": "SUV", "Make": "Isuzu", "Model": "Ascender", "Year": 2007, "createdAt": "2020-01-27T21:35:04.926Z", "id": "Jb5gdSDhXf", "updatedAt": "2020-01-27T21:35:04.926Z" }, { "ACL": null, "Category": "Pickup", "Make": "Isuzu", "Model": "i-350 Crew Cab", "Year": 2006, "createdAt": "2020-01-27T21:35:04.926Z", "id": "mHx3A7YMaY", "updatedAt": "2020-01-27T21:35:04.926Z" } ] } } }