This GraphQL query fetches All Car_Model_List_Ferraris
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Ferraris { car_Model_List_Ferraris (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Ferraris": { "results": [ { "ACL": null, "Category": "Convertible", "Make": "Ferrari", "Model": "488 Spider", "Year": 2017, "createdAt": "2020-01-27T21:17:28.518Z", "id": "fM1fJzf1Cv", "updatedAt": "2020-01-27T21:17:28.518Z" }, { "ACL": null, "Category": "Convertible", "Make": "Ferrari", "Model": "Portofino", "Year": 2018, "createdAt": "2020-01-27T21:17:28.518Z", "id": "DEUhkh0p7D", "updatedAt": "2020-01-27T21:17:28.518Z" }, { "ACL": null, "Category": "Coupe", "Make": "Ferrari", "Model": "F12berlinetta", "Year": 2015, "createdAt": "2020-01-27T21:17:28.518Z", "id": "fv3gSH4JQ2", "updatedAt": "2020-01-27T21:17:28.518Z" } ] } } }