This GraphQL query fetches All Car_Model_List_Maybaches
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Maybaches { car_Model_List_Maybaches (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Maybaches": { "results": [ { "ACL": null, "Category": "Sedan", "Make": "Maybach", "Model": 57, "Year": 2008, "createdAt": "2020-01-27T21:49:41.744Z", "id": "LlQjTEBz7l", "updatedAt": "2020-01-27T21:49:41.744Z" }, { "ACL": null, "Category": "Sedan", "Make": "Maybach", "Model": 62, "Year": 2011, "createdAt": "2020-01-27T21:49:41.743Z", "id": "vvqzOnIPlc", "updatedAt": "2020-01-27T21:49:41.743Z" }, { "ACL": null, "Category": "Sedan", "Make": "Maybach", "Model": 62, "Year": 2005, "createdAt": "2020-01-27T21:49:41.744Z", "id": "EDvpiEu9pa", "updatedAt": "2020-01-27T21:49:41.744Z" } ] } } }