This GraphQL query fetches All Car_Model_List_GMCS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_GMCS { car_Model_List_GMCS (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_GMCS": { "results": [ { "ACL": null, "Category": "Pickup", "Make": "GMC", "Model": "Sierra 2500 HD Crew Cab", "Year": 2020, "createdAt": "2020-01-27T21:28:05.375Z", "id": "5vMwX37pXg", "updatedAt": "2020-01-27T21:28:05.375Z" }, { "ACL": null, "Category": "SUV", "Make": "GMC", "Model": "Acadia", "Year": 2020, "createdAt": "2020-01-27T21:28:05.375Z", "id": "IUrfrC6UTK", "updatedAt": "2020-01-27T21:28:05.375Z" }, { "ACL": null, "Category": "Van/Minivan", "Make": "GMC", "Model": "Savana 2500 Cargo", "Year": 2018, "createdAt": "2020-01-27T21:28:05.375Z", "id": "FtqU5oflEG", "updatedAt": "2020-01-27T21:28:05.375Z" } ] } } }