This GraphQL query fetches All Car_Model_List_Porsches
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Porsches { car_Model_List_Porsches (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Porsches": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Porsche", "Model": "Macan", "Year": 2020, "createdAt": "2020-01-27T22:08:18.275Z", "id": "2jjN9GuYQW", "updatedAt": "2020-01-27T22:08:18.275Z" }, { "ACL": null, "Category": "Coupe", "Make": "Porsche", "Model": "718 Cayman", "Year": 2018, "createdAt": "2020-01-27T22:08:18.275Z", "id": "uU4EHDW4Go", "updatedAt": "2020-01-27T22:08:18.275Z" }, { "ACL": null, "Category": "Convertible", "Make": "Porsche", "Model": "Boxster", "Year": 2016, "createdAt": "2020-01-27T22:08:18.275Z", "id": "7O5ueiTnMn", "updatedAt": "2020-01-27T22:08:18.275Z" } ] } } }