This GraphQL query fetches All Car_Model_List_Oldsmobiles
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Oldsmobiles { car_Model_List_Oldsmobiles (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Oldsmobiles": { "results": [ { "ACL": null, "Category": "Van/Minivan", "Make": "Oldsmobile", "Model": "Silhouette", "Year": 2002, "createdAt": "2020-01-27T22:02:58.943Z", "id": "FcowEfoNsJ", "updatedAt": "2020-01-27T22:02:58.943Z" }, { "ACL": null, "Category": "Sedan, Coupe", "Make": "Oldsmobile", "Model": "Alero", "Year": 2002, "createdAt": "2020-01-27T22:02:58.943Z", "id": "0ntxzf6luy", "updatedAt": "2020-01-27T22:02:58.943Z" }, { "ACL": null, "Category": "Sedan", "Make": "Oldsmobile", "Model": "Aurora", "Year": 1995, "createdAt": "2020-01-27T22:02:58.943Z", "id": "uvxBXlCowR", "updatedAt": "2020-01-27T22:02:58.943Z" } ] } } }