This GraphQL query fetches All Car_Model_List_Lexuses
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Lexuses { car_Model_List_Lexuses (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Lexuses": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Lexus", "Model": "RX", "Year": 2013, "createdAt": "2020-01-27T21:43:40.103Z", "id": "AzCE4g5WPm", "updatedAt": "2020-01-27T21:43:40.103Z" }, { "ACL": null, "Category": "Coupe", "Make": "Lexus", "Model": "LC", "Year": 2020, "createdAt": "2020-01-27T21:43:40.102Z", "id": "TQuwgyGaB0", "updatedAt": "2020-01-27T21:43:40.102Z" }, { "ACL": null, "Category": "Sedan", "Make": "Lexus", "Model": "LS", "Year": 2018, "createdAt": "2020-01-27T21:43:40.103Z", "id": "WXAKb6eFYR", "updatedAt": "2020-01-27T21:43:40.103Z" } ] } } }