This GraphQL query fetches All Car_Model_List_Alfa_Romeos
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Alfa_Romeos { car_Model_List_Alfa_Romeos (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Alfa_Romeos": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Alfa Romeo", "Model": "Stelvio", "Year": 2019, "createdAt": "2020-01-27T20:54:50.684Z", "id": "FdIUsKvfwJ", "updatedAt": "2020-01-27T20:54:50.684Z" }, { "ACL": null, "Category": "Convertible", "Make": "Alfa Romeo", "Model": "4C Spider", "Year": 2019, "createdAt": "2020-01-27T20:54:50.684Z", "id": "NNthLzJ7G0", "updatedAt": "2020-01-27T20:54:50.684Z" }, { "ACL": null, "Category": "Sedan", "Make": "Alfa Romeo", "Model": "Giulia", "Year": 2018, "createdAt": "2020-01-27T20:54:50.684Z", "id": "wcBBbBBACu", "updatedAt": "2020-01-27T20:54:50.684Z" } ] } } }