This GraphQL query fetches All Car_Model_List_Hummers
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Hummers { car_Model_List_Hummers (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Hummers": { "results": [ { "ACL": null, "Category": "SUV", "Make": "HUMMER", "Model": "H3", "Year": 2009, "createdAt": "2020-01-27T21:30:49.742Z", "id": "VaO06u6l8k", "updatedAt": "2020-01-27T21:30:49.742Z" }, { "ACL": null, "Category": "SUV", "Make": "HUMMER", "Model": "H2", "Year": 2009, "createdAt": "2020-01-27T21:30:49.742Z", "id": "FUaAjU6KIG", "updatedAt": "2020-01-27T21:30:49.742Z" }, { "ACL": null, "Category": "Pickup", "Make": "HUMMER", "Model": "H3T", "Year": 2010, "createdAt": "2020-01-27T21:30:49.742Z", "id": "DCQNxjBqGU", "updatedAt": "2020-01-27T21:30:49.742Z" } ] } } }