This GraphQL query fetches All Car_Model_Lists
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_Lists { car_Model_Lists (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_Lists": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Audi", "Model": "Q3", "Year": 2020, "createdAt": "2020-01-27T20:44:17.665Z", "id": "ZRgPP9dBMm", "updatedAt": "2020-01-27T20:44:17.665Z" }, { "ACL": null, "Category": "Sedan", "Make": "Chevrolet", "Model": "Malibu", "Year": 2020, "createdAt": "2020-01-27T20:44:17.665Z", "id": "cptB1C1NSL", "updatedAt": "2020-01-27T20:44:17.665Z" }, { "ACL": null, "Category": "SUV", "Make": "Cadillac", "Model": "Escalade ESV", "Year": 2020, "createdAt": "2020-01-27T20:44:17.665Z", "id": "ElhqsRZDnP", "updatedAt": "2020-01-27T20:44:17.665Z" } ] } } }