This GraphQL query fetches All Car_Model_List_Mercuries
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Mercuries { car_Model_List_Mercuries (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Mercuries": { "results": [ { "ACL": null, "Category": "Sedan", "Make": "Mercury", "Model": "Milan", "Year": 2011, "createdAt": "2020-01-27T21:56:57.183Z", "id": "68UwEexrOW", "updatedAt": "2020-01-27T21:56:57.183Z" }, { "ACL": null, "Category": "Sedan", "Make": "Mercury", "Model": "Grand Marquis", "Year": 2008, "createdAt": "2020-01-27T21:56:57.183Z", "id": "lQPiHlVFQW", "updatedAt": "2020-01-27T21:56:57.183Z" }, { "ACL": null, "Category": "Sedan", "Make": "Mercury", "Model": "Sable", "Year": 2009, "createdAt": "2020-01-27T21:56:57.183Z", "id": "CVG1CB57A7", "updatedAt": "2020-01-27T21:56:57.183Z" } ] } } }