This GraphQL query fetches All Car_Model_List_Minis
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Minis { car_Model_List_Minis (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Minis": { "results": [ { "ACL": null, "Category": "Hatchback", "Make": "MINI", "Model": "Hardtop 4 Door", "Year": 2018, "createdAt": "2020-01-27T21:58:15.287Z", "id": "7TlPX4b9sr", "updatedAt": "2020-01-27T21:58:15.287Z" }, { "ACL": null, "Category": "Hatchback", "Make": "MINI", "Model": "Clubman", "Year": 2017, "createdAt": "2020-01-27T21:58:15.287Z", "id": "ZKiIz3xkAO", "updatedAt": "2020-01-27T21:58:15.287Z" }, { "ACL": null, "Category": "Convertible", "Make": "MINI", "Model": "Convertible", "Year": 2019, "createdAt": "2020-01-27T21:58:15.287Z", "id": "4OFZw6RKfR", "updatedAt": "2020-01-27T21:58:15.287Z" } ] } } }