This GraphQL query fetches All Car_Model_List_Aston_Martins
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Aston_Martins { car_Model_List_Aston_Martins (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Aston_Martins": { "results": [ { "ACL": null, "Category": "Sedan", "Make": "Aston Martin", "Model": "Rapide S", "Year": 2015, "createdAt": "2020-01-27T20:56:21.960Z", "id": "0PFeSNfQTe", "updatedAt": "2020-01-27T20:56:21.960Z" }, { "ACL": null, "Category": "Sedan", "Make": "Aston Martin", "Model": "Rapide S", "Year": 2017, "createdAt": "2020-01-27T20:56:21.960Z", "id": "3C4SNR7vzq", "updatedAt": "2020-01-27T20:56:21.960Z" }, { "ACL": null, "Category": "Coupe, Convertible", "Make": "Aston Martin", "Model": "Vantage", "Year": 2016, "createdAt": "2020-01-27T20:56:21.960Z", "id": "xTFcixtJ0Q", "updatedAt": "2020-01-27T20:56:21.960Z" } ] } } }