This GraphQL query fetches All Car_Model_List_Jeeps
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Jeeps { car_Model_List_Jeeps (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Jeeps": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Jeep", "Model": "Wrangler Unlimited", "Year": 2018, "createdAt": "2020-01-27T21:37:49.136Z", "id": "IIF5HykHRy", "updatedAt": "2020-01-27T21:37:49.136Z" }, { "ACL": null, "Category": "SUV", "Make": "Jeep", "Model": "Compass", "Year": 2013, "createdAt": "2020-01-27T21:37:49.137Z", "id": "J1vCmHANIf", "updatedAt": "2020-01-27T21:37:49.137Z" }, { "ACL": null, "Category": "SUV", "Make": "Jeep", "Model": "Wrangler", "Year": 2016, "createdAt": "2020-01-27T21:37:49.136Z", "id": "LEsYpVGrYg", "updatedAt": "2020-01-27T21:37:49.136Z" } ] } } }