This GraphQL query fetches All Car_Model_List_Hondas
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Hondas { car_Model_List_Hondas (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Hondas": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Honda", "Model": "Pilot", "Year": 2020, "createdAt": "2020-01-27T21:29:21.850Z", "id": "DG99u4z0h2", "updatedAt": "2020-01-27T21:29:21.850Z" }, { "ACL": null, "Category": "Sedan", "Make": "Honda", "Model": "Clarity Electric", "Year": 2019, "createdAt": "2020-01-27T21:29:21.850Z", "id": "fRfpH54Dz6", "updatedAt": "2020-01-27T21:29:21.850Z" }, { "ACL": null, "Category": "Sedan", "Make": "Honda", "Model": "Clarity Fuel Cell", "Year": 2019, "createdAt": "2020-01-27T21:29:21.850Z", "id": "SdoWTidr8Q", "updatedAt": "2020-01-27T21:29:21.850Z" } ] } } }