This GraphQL query fetches All Car_Model_List_Lamborghinis
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Lamborghinis { car_Model_List_Lamborghinis (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Lamborghinis": { "results": [ { "ACL": null, "Category": "Coupe, Convertible", "Make": "Lamborghini", "Model": "Aventador", "Year": 2017, "createdAt": "2020-01-27T21:40:52.853Z", "id": "2fj2GFhbqM", "updatedAt": "2020-01-27T21:40:52.853Z" }, { "ACL": null, "Category": "Convertible, Coupe", "Make": "Lamborghini", "Model": "Aventador", "Year": 2016, "createdAt": "2020-01-27T21:40:52.853Z", "id": "JtACtwAQtp", "updatedAt": "2020-01-27T21:40:52.853Z" }, { "ACL": null, "Category": "Coupe, Convertible", "Make": "Lamborghini", "Model": "Huracan", "Year": 2016, "createdAt": "2020-01-27T21:40:52.853Z", "id": "Auyx3yAElU", "updatedAt": "2020-01-27T21:40:52.853Z" } ] } } }