This GraphQL query fetches All Car_Model_List_McLarens
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_McLarens { car_Model_List_McLarens (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_McLarens": { "results": [ { "ACL": null, "Category": "Coupe", "Make": "McLaren", "Model": "570S", "Year": 2016, "createdAt": "2020-01-27T21:59:34.454Z", "id": "aHzGLkubQV", "updatedAt": "2020-01-27T21:59:34.454Z" }, { "ACL": null, "Category": "Coupe, Convertible", "Make": "McLaren", "Model": "570S", "Year": 2018, "createdAt": "2020-01-27T21:59:34.454Z", "id": "uKnWAqjnFe", "updatedAt": "2020-01-27T21:59:34.454Z" }, { "ACL": null, "Category": "Coupe", "Make": "McLaren", "Model": "570GT", "Year": 2017, "createdAt": "2020-01-27T21:59:34.454Z", "id": "udh64Wr38H", "updatedAt": "2020-01-27T21:59:34.454Z" } ] } } }