This GraphQL query fetches All Car_Model_List_Fords
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allCar_Model_List_Fords { car_Model_List_Fords (skip: 0, limit: 3) { results { ACL Category Make Model Year createdAt id updatedAt } } }
{ "data": { "car_Model_List_Fords": { "results": [ { "ACL": null, "Category": "SUV", "Make": "Ford", "Model": "Escape", "Year": 2020, "createdAt": "2020-01-27T21:21:31.080Z", "id": "a2MMZgnuEw", "updatedAt": "2020-01-27T21:21:31.080Z" }, { "ACL": null, "Category": "SUV", "Make": "Ford", "Model": "Flex", "Year": 2019, "createdAt": "2020-01-27T21:21:31.082Z", "id": "IINHB5QqT6", "updatedAt": "2020-01-27T21:21:31.082Z" }, { "ACL": null, "Category": "Sedan", "Make": "Ford", "Model": "Taurus", "Year": 2019, "createdAt": "2020-01-27T21:21:31.082Z", "id": "dKdJiPP03j", "updatedAt": "2020-01-27T21:21:31.082Z" } ] } } }