This GraphQL query fetches All Car_Model_List_Land_Rovers
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Land_Rovers { car_Model_List_Land_Rovers (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Land_Rovers": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Land Rover", "Model": "Range Rover Evoque", "Year": 2018, "createdAt": "2020-01-27T21:42:36.253Z", "id": "q65GnsPvoW", "updatedAt": "2020-01-27T21:42:36.253Z" }, { "ACL": null, "Category": "SUV", "Make": "Land Rover", "Model": "Discovery", "Year": 2019, "createdAt": "2020-01-27T21:42:36.253Z", "id": "AnVf2e5p7H", "updatedAt": "2020-01-27T21:42:36.253Z" }, { "ACL": null, "Category": "SUV", "Make": "Land Rover", "Model": "Range Rover", "Year": 2020, "createdAt": "2020-01-27T21:42:36.253Z", "id": "a2CNk2ANYA", "updatedAt": "2020-01-27T21:42:36.253Z" } ] } } }