This GraphQL query fetches All Car_Model_List_Toyotas
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Toyotas { car_Model_List_Toyotas (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Toyotas": { "results": [ { "ACL": null, "Category": "Pickup", "Make": "Toyota", "Model": "Tacoma Double Cab", "Year": 2020, "createdAt": "2020-01-27T22:19:02.645Z", "id": "SAcDrXuba4", "updatedAt": "2020-01-27T22:19:02.645Z" }, { "ACL": null, "Category": "Coupe", "Make": "Toyota", "Model": "GR Supra", "Year": 2020, "createdAt": "2020-01-27T22:19:02.644Z", "id": "6JaEDMeiTk", "updatedAt": "2020-01-27T22:19:02.644Z" }, { "ACL": null, "Category": "SUV", "Make": "Toyota", "Model": "RAV4 Hybrid", "Year": 2020, "createdAt": "2020-01-27T22:19:02.644Z", "id": "rvTNpTvBWS", "updatedAt": "2020-01-27T22:19:02.644Z" } ] } } }