This GraphQL query fetches All Car_Model_List_Freightliners
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Freightliners { car_Model_List_Freightliners (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Freightliners": { "results": [ { "ACL": null, "Category": "Van/Minivan", "Make": "Freightliner", "Model": "Sprinter 2500 Crew", "Year": 2018, "createdAt": "2020-01-27T21:22:54.787Z", "id": "UtyySKibeA", "updatedAt": "2020-01-27T21:22:54.787Z" }, { "ACL": null, "Category": "Van/Minivan", "Make": "Freightliner", "Model": "Sprinter 3500 Cargo", "Year": 2017, "createdAt": "2020-01-27T21:22:54.787Z", "id": "Ejqtj7rM28", "updatedAt": "2020-01-27T21:22:54.787Z" }, { "ACL": null, "Category": "Van/Minivan", "Make": "Freightliner", "Model": "Sprinter 3500XD Cargo", "Year": 2018, "createdAt": "2020-01-27T21:22:54.787Z", "id": "4ZiKgfMURS", "updatedAt": "2020-01-27T21:22:54.787Z" } ] } } }