This GraphQL query fetches All Car_Model_List_Panozs
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Panozs { car_Model_List_Panozs (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Panozs": { "results": [ { "ACL": null, "Category": "Coupe, Convertible", "Make": "Panoz", "Model": "Esperante", "Year": 2006, "createdAt": "2020-01-27T22:04:20.031Z", "id": "3DQ9vnvcpD", "updatedAt": "2020-01-27T22:04:20.031Z" }, { "ACL": null, "Category": "Coupe, Convertible", "Make": "Panoz", "Model": "Esperante", "Year": 2005, "createdAt": "2020-01-27T22:04:20.031Z", "id": "klx9K39qhA", "updatedAt": "2020-01-27T22:04:20.031Z" } ] } } }