This GraphQL query fetches All Car_Model_List_Cadillacs
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Cadillacs { car_Model_List_Cadillacs (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Cadillacs": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Cadillac", "Model": "XT4", "Year": 2019, "createdAt": "2020-01-27T21:07:40.488Z", "id": "GoUfUUjJ44", "updatedAt": "2020-01-27T21:07:40.488Z" }, { "ACL": null, "Category": "Sedan", "Make": "Cadillac", "Model": "CT6", "Year": 2019, "createdAt": "2020-01-27T21:07:40.488Z", "id": "0fqf54Vv1n", "updatedAt": "2020-01-27T21:07:40.488Z" }, { "ACL": null, "Category": "SUV", "Make": "Cadillac", "Model": "Escalade ESV", "Year": 2020, "createdAt": "2020-01-27T21:07:40.488Z", "id": "oNEdCPVfHx", "updatedAt": "2020-01-27T21:07:40.488Z" } ] } } }