This GraphQL query fetches All Car_Model_List_Plymouths
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Plymouths { car_Model_List_Plymouths (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Plymouths": { "results": [ { "ACL": null, "Category": "Van/Minivan", "Make": "Plymouth", "Model": "Voyager", "Year": 1995, "createdAt": "2020-01-27T22:05:32.940Z", "id": "3l3wA3yIYY", "updatedAt": "2020-01-27T22:05:32.940Z" }, { "ACL": null, "Category": "Sedan", "Make": "Plymouth", "Model": "Breeze", "Year": 1999, "createdAt": "2020-01-27T22:05:32.940Z", "id": "fTRYTAktyS", "updatedAt": "2020-01-27T22:05:32.940Z" }, { "ACL": null, "Category": "Convertible", "Make": "Plymouth", "Model": "Prowler", "Year": 1997, "createdAt": "2020-01-27T22:05:32.940Z", "id": "lLcVqy4ohg", "updatedAt": "2020-01-27T22:05:32.940Z" } ] } } }