This GraphQL query fetches All Car_Model_List_Acuras
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Acuras { car_Model_List_Acuras (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Acuras": { "results": [ { "ACL": null, "Category": "Sedan", "Make": "Acura", "Model": "RLX", "Year": 2018, "createdAt": "2020-01-27T20:52:14.546Z", "id": "8PtYdD3tEq", "updatedAt": "2020-01-27T20:52:14.546Z" }, { "ACL": null, "Category": "Sedan", "Make": "Acura", "Model": "RLX Sport Hybrid", "Year": 2018, "createdAt": "2020-01-27T20:52:14.546Z", "id": "ymaBCoNp4e", "updatedAt": "2020-01-27T20:52:14.546Z" }, { "ACL": null, "Category": "SUV", "Make": "Acura", "Model": "MDX", "Year": 2018, "createdAt": "2020-01-27T20:52:14.546Z", "id": "3WngHlGfXJ", "updatedAt": "2020-01-27T20:52:14.546Z" } ] } } }