This GraphQL query fetches All Car_Model_List_MAZDAS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_MAZDAS { car_Model_List_MAZDAS (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_MAZDAS": { "results": [ { "ACL": null, "Category": "Convertible", "Make": "MAZDA", "Model": "MX-5 Miata", "Year": 2018, "createdAt": "2020-01-27T21:51:01.772Z", "id": "xeIWtjqShm", "updatedAt": "2020-01-27T21:51:01.772Z" }, { "ACL": null, "Category": "SUV", "Make": "MAZDA", "Model": "CX-5", "Year": 2018, "createdAt": "2020-01-27T21:51:01.772Z", "id": "SxprvCjwBu", "updatedAt": "2020-01-27T21:51:01.772Z" }, { "ACL": null, "Category": "SUV", "Make": "MAZDA", "Model": "CX-5", "Year": 2020, "createdAt": "2020-01-27T21:51:01.772Z", "id": "i1Sq3HtGZZ", "updatedAt": "2020-01-27T21:51:01.772Z" } ] } } }