This GraphQL query fetches All Car_Model_List_Audis
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Audis { car_Model_List_Audis (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Audis": { "results": [ { "ACL": null, "Category": "Sedan", "Make": "Audi", "Model": "A7", "Year": 2020, "createdAt": "2020-01-27T20:57:57.217Z", "id": "HOgqvUPjd6", "updatedAt": "2020-01-27T20:57:57.217Z" }, { "ACL": null, "Category": "Coupe", "Make": "Audi", "Model": "TT", "Year": 2019, "createdAt": "2020-01-27T20:57:57.219Z", "id": "LxcrclNjBW", "updatedAt": "2020-01-27T20:57:57.219Z" }, { "ACL": null, "Category": "Sedan", "Make": "Audi", "Model": "RS 3", "Year": 2019, "createdAt": "2020-01-27T20:57:57.217Z", "id": "EEWY4Hhw3k", "updatedAt": "2020-01-27T20:57:57.217Z" } ] } } }