This GraphQL query fetches All CondimentFoods
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
query allCondimentFoods { condimentFoods (skip: 0, limit: 3) { results { ACL condiment_added_sugars condiment_alcohol condiment_calories condiment_dkgreen condiment_drybeans_peas condiment_fruits condiment_grains condiment_meat condiment_milk condiment_oils condiment_orange condiment_other_vegetables condiment_portion_code condiment_portion_size condiment_saturated_fats condiment_solid_fats condiment_soy condiment_starchy_vegetables condiment_vegetables condiment_whole_grains createdAt display_name id survey_food_code updatedAt } } }