This GraphQL query fetches All Car_Model_List_Daewoos
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Daewoos { car_Model_List_Daewoos (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Daewoos": { "results": [ { "ACL": null, "Category": "Sedan, Wagon", "Make": "Daewoo", "Model": "Nubira", "Year": 2001, "createdAt": "2020-01-27T21:12:02.457Z", "id": "PWihTDfIg1", "updatedAt": "2020-01-27T21:12:02.457Z" }, { "ACL": null, "Category": "Sedan, Hatchback", "Make": "Daewoo", "Model": "Lanos", "Year": 2000, "createdAt": "2020-01-27T21:12:02.457Z", "id": "ky71x2kOdo", "updatedAt": "2020-01-27T21:12:02.457Z" }, { "ACL": null, "Category": "Sedan", "Make": "Daewoo", "Model": "Leganza", "Year": 2002, "createdAt": "2020-01-27T21:12:02.457Z", "id": "JT6Z1IhRxb", "updatedAt": "2020-01-27T21:12:02.457Z" } ] } } }