This GraphQL query fetches All Car_Model_List_BMWS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_BMWS { car_Model_List_BMWS (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_BMWS": { "results": [ { "ACL": null, "Category": "Hatchback", "Make": "BMW", "Model": "i3", "Year": 2019, "createdAt": "2020-01-27T21:04:53.095Z", "id": "AUwGLXUzS2", "updatedAt": "2020-01-27T21:04:53.095Z" }, { "ACL": null, "Category": "SUV", "Make": "BMW", "Model": "X6", "Year": 2019, "createdAt": "2020-01-27T21:04:53.095Z", "id": "4fOA1olTnP", "updatedAt": "2020-01-27T21:04:53.095Z" }, { "ACL": null, "Category": "SUV", "Make": "BMW", "Model": "X6 M", "Year": 2019, "createdAt": "2020-01-27T21:04:53.095Z", "id": "Khkkd3cTWW", "updatedAt": "2020-01-27T21:04:53.095Z" } ] } } }