This GraphQL query fetches All Car_Model_List_Mitsubishis
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Mitsubishis { car_Model_List_Mitsubishis (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Mitsubishis": { "results": [ { "ACL": null, "Category": "Hatchback", "Make": "Mitsubishi", "Model": "Mirage", "Year": 2018, "createdAt": "2020-01-27T22:00:40.918Z", "id": "sFZZExuSdJ", "updatedAt": "2020-01-27T22:00:40.918Z" }, { "ACL": null, "Category": "Sedan", "Make": "Mitsubishi", "Model": "Mirage G4", "Year": 2019, "createdAt": "2020-01-27T22:00:40.918Z", "id": "uZasgGZ3f2", "updatedAt": "2020-01-27T22:00:40.918Z" }, { "ACL": null, "Category": "SUV", "Make": "Mitsubishi", "Model": "Outlander", "Year": 2017, "createdAt": "2020-01-27T22:00:40.918Z", "id": "CaODpKdATg", "updatedAt": "2020-01-27T22:00:40.918Z" } ] } } }