This GraphQL query fetches All Car_Model_List_Rolls_Royces
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Rolls_Royces { car_Model_List_Rolls_Royces (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Rolls_Royces": { "results": [ { "ACL": null, "Category": "Convertible", "Make": "Rolls-Royce", "Model": "Dawn", "Year": 2018, "createdAt": "2020-01-27T22:11:00.274Z", "id": "h9BxDbA148", "updatedAt": "2020-01-27T22:11:00.274Z" }, { "ACL": null, "Category": "Coupe", "Make": "Rolls-Royce", "Model": "Wraith", "Year": 2016, "createdAt": "2020-01-27T22:11:00.275Z", "id": "FuriSAgN3x", "updatedAt": "2020-01-27T22:11:00.275Z" }, { "ACL": null, "Category": "Sedan", "Make": "Rolls-Royce", "Model": "Ghost", "Year": 2017, "createdAt": "2020-01-27T22:11:00.275Z", "id": "lfJDVchRHL", "updatedAt": "2020-01-27T22:11:00.275Z" } ] } } }