This GraphQL query fetches All FoodDisplays
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
query allFoodDisplays { foodDisplays (skip: 0, limit: 3) { results { ACL Added_Sugars Alcohol Calories Display_Name Drkgreen_Vegetables Drybeans_Peas Factor Food_Code Fruits Grains Increment Meats Milk Multiplier Oils Orange_Vegetables Other_Vegetables Portion_Amount Portion_Default Portion_Display_Name Saturated_Fats Solid_Fats Soy Starchy_vegetables Vegetables Whole_Grains createdAt id updatedAt } } }
{ "data": { "foodDisplays": { "results": [ { "ACL": null, "Added_Sugars": 51.65359, "Alcohol": 0, "Calories": 95.04, "Display_Name": "Sherbet", "Drkgreen_Vegetables": 0, "Drybeans_Peas": 0, "Factor": 1, "Food_Code": 13150000, "Fruits": 0.03894, "Grains": 0, "Increment": 0.5, "Meats": 0, "Milk": 0.07326, "Multiplier": 0.5, "Oils": 0.01687, "Orange_Vegetables": 0, "Other_Vegetables": 0, "Portion_Amount": 1, "Portion_Default": 2, "Portion_Display_Name": "push up", "Saturated_Fats": 0.7656, "Solid_Fats": 6.22512, "Soy": 0, "Starchy_vegetables": 0, "Vegetables": 0, "Whole_Grains": 0, "createdAt": "2020-02-04T17:10:06.168Z", "id": "bCHKDmfRHh", "updatedAt": "2020-02-04T17:10:06.168Z" }, { "ACL": null, "Added_Sugars": 0, "Alcohol": 0, "Calories": 31.08, "Display_Name": "Fat-free American cheese", "Drkgreen_Vegetables": 0, "Drybeans_Peas": 0, "Factor": 1, "Food_Code": 14410350, "Fruits": 0, "Grains": 0, "Increment": 0.5, "Meats": 0, "Milk": 0.49392, "Multiplier": 0.5, "Oils": 0, "Orange_Vegetables": 0, "Other_Vegetables": 0, "Portion_Amount": 1, "Portion_Default": 1, "Portion_Display_Name": "slice (slice = 3/4 oz)", "Saturated_Fats": 0.105, "Solid_Fats": 0.6237, "Soy": 0, "Starchy_vegetables": 0, "Vegetables": 0, "Whole_Grains": 0, "createdAt": "2020-02-04T17:10:06.168Z", "id": "8EWyyu4DDG", "updatedAt": "2020-02-04T17:10:06.168Z" }, { "ACL": null, "Added_Sugars": 41.22339, "Alcohol": 0, "Calories": 129.6, "Display_Name": "Light ice cream sandwich", "Drkgreen_Vegetables": 0, "Drybeans_Peas": 0, "Factor": 1, "Food_Code": 13135000, "Fruits": 0, "Grains": 0.5436, "Increment": 0.5, "Meats": 0, "Milk": 0.2652, "Multiplier": 0.5, "Oils": 0, "Orange_Vegetables": 0, "Other_Vegetables": 0, "Portion_Amount": 1, "Portion_Default": 1, "Portion_Display_Name": "sandwich", "Saturated_Fats": 1.368, "Solid_Fats": 21.2112, "Soy": 0, "Starchy_vegetables": 0, "Vegetables": 0, "Whole_Grains": 0, "createdAt": "2020-02-04T17:10:06.168Z", "id": "u8QqHdAZwb", "updatedAt": "2020-02-04T17:10:06.168Z" } ] } } }