This GraphQL query fetches All Car_Model_List_Klas
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Klas { car_Model_List_Klas (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Klas": { "results": [ { "ACL": null, "Category": "Sedan", "Make": "Kia", "Model": "Optima Hybrid", "Year": 2019, "createdAt": "2020-01-27T21:39:31.957Z", "id": "51gcB0ckzH", "updatedAt": "2020-01-27T21:39:31.957Z" }, { "ACL": null, "Category": "Wagon", "Make": "Kia", "Model": "Soul", "Year": 2018, "createdAt": "2020-01-27T21:39:31.957Z", "id": "xCoHET98r2", "updatedAt": "2020-01-27T21:39:31.957Z" }, { "ACL": null, "Category": "Sedan", "Make": "Kia", "Model": "Optima Hybrid", "Year": 2017, "createdAt": "2020-01-27T21:39:31.957Z", "id": "fKladc49np", "updatedAt": "2020-01-27T21:39:31.957Z" } ] } } }