This GraphQL query fetches All Car_Model_List_Bentleys
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Bentleys { car_Model_List_Bentleys (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Bentleys": { "results": [ { "ACL": null, "Category": "Sedan, Convertible, Coupe", "Make": "Bentley", "Model": "Continental", "Year": 2013, "createdAt": "2020-01-27T21:03:45.684Z", "id": "VyH19VlrjK", "updatedAt": "2020-01-27T21:03:45.684Z" }, { "ACL": null, "Category": "SUV", "Make": "Bentley", "Model": "Bentayga", "Year": 2018, "createdAt": "2020-01-27T21:03:45.684Z", "id": "h183U5y70u", "updatedAt": "2020-01-27T21:03:45.684Z" }, { "ACL": null, "Category": "SUV", "Make": "Bentley", "Model": "Bentayga", "Year": 2017, "createdAt": "2020-01-27T21:03:45.684Z", "id": "StaOGLHI8H", "updatedAt": "2020-01-27T21:03:45.684Z" } ] } } }