This GraphQL query fetches All Car_Model_List_Jaguars
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Jaguars { car_Model_List_Jaguars (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Jaguars": { "results": [ { "ACL": null, "Category": "Coupe, Convertible", "Make": "Jaguar", "Model": "F-TYPE", "Year": 2019, "createdAt": "2020-01-27T21:36:29.792Z", "id": "0a2LApgCoa", "updatedAt": "2020-01-27T21:36:29.792Z" }, { "ACL": null, "Category": "Coupe, Convertible", "Make": "Jaguar", "Model": "XK", "Year": 2013, "createdAt": "2020-01-27T21:36:29.792Z", "id": "oKMQmMOqyt", "updatedAt": "2020-01-27T21:36:29.792Z" }, { "ACL": null, "Category": "SUV", "Make": "Jaguar", "Model": "F-PACE", "Year": 2020, "createdAt": "2020-01-27T21:36:29.792Z", "id": "GWpdxERBij", "updatedAt": "2020-01-27T21:36:29.792Z" } ] } } }