This GraphQL query fetches All Car_Model_List_Buicks
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Buicks { car_Model_List_Buicks (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Buicks": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Buick", "Model": "Encore", "Year": 2015, "createdAt": "2020-01-27T21:06:25.546Z", "id": "rTy9qD1plF", "updatedAt": "2020-01-27T21:06:25.546Z" }, { "ACL": null, "Category": "Sedan", "Make": "Buick", "Model": "Regal", "Year": 2017, "createdAt": "2020-01-27T21:06:25.546Z", "id": "ydBECC4RfD", "updatedAt": "2020-01-27T21:06:25.546Z" }, { "ACL": null, "Category": "Sedan", "Make": "Buick", "Model": "Regal Sportback", "Year": 2019, "createdAt": "2020-01-27T21:06:25.545Z", "id": "UWpPfz8gzs", "updatedAt": "2020-01-27T21:06:25.545Z" } ] } } }