This GraphQL query fetches All Car_Model_List_Geos
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Geos { car_Model_List_Geos (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Geos": { "results": [ { "ACL": null, "Category": "Coupe, Sedan", "Make": "Geo", "Model": "Metro", "Year": 1997, "createdAt": "2020-01-27T21:26:02.861Z", "id": "1hO4U75lks", "updatedAt": "2020-01-27T21:26:02.861Z" }, { "ACL": null, "Category": "Sedan", "Make": "Geo", "Model": "Prizm", "Year": 1996, "createdAt": "2020-01-27T21:26:02.861Z", "id": "sFjjaG4WSv", "updatedAt": "2020-01-27T21:26:02.861Z" }, { "ACL": null, "Category": "SUV", "Make": "Geo", "Model": "Tracker", "Year": 1994, "createdAt": "2020-01-27T21:26:02.861Z", "id": "9Gtt7ELUy0", "updatedAt": "2020-01-27T21:26:02.861Z" } ] } } }