This GraphQL query fetches All Car_Model_List_Nissans
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Nissans { car_Model_List_Nissans (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Nissans": { "results": [ { "ACL": null, "Category": "Van/Minivan", "Make": "Nissan", "Model": "NV3500 HD Cargo", "Year": 2020, "createdAt": "2020-01-27T22:01:50.865Z", "id": "PqHbbM7gst", "updatedAt": "2020-01-27T22:01:50.865Z" }, { "ACL": null, "Category": "SUV", "Make": "Nissan", "Model": "Armada", "Year": 2019, "createdAt": "2020-01-27T22:01:50.865Z", "id": "E3lEgGYQGK", "updatedAt": "2020-01-27T22:01:50.865Z" }, { "ACL": null, "Category": "SUV", "Make": "Nissan", "Model": "Rogue", "Year": 2020, "createdAt": "2020-01-27T22:01:50.865Z", "id": "DFcJtvqs6Q", "updatedAt": "2020-01-27T22:01:50.865Z" } ] } } }