OBJECT
Entry
A post about a client, with different category options
link GraphQL Schema definition
- type Entry {
- # User who added the entry
- User :
- # the user who actually put in the entry (not always the user who the entry is
- # about)
- ID :
- # The category of this entry
- String :
- # All comments association with this entry.
- Comment!]! : [
- # The time at which this entry was created
- String :
- # Default water intake for this entry user
- Int :
- # The description for the entry
- String :
- # A more granular 1-10 scale of how hungry the user thought they were after eating
- String :
- # A more granular 1-10 scale of how hungry the user thought they were after eating
- String :
- # A more granular 1-10 scale of how hungry the user thought they were before
- # eating
- String :
- # A more granular 1-10 scale of how hungry the user thought they were before
- # eating
- String :
- # The users emotions towards the meal
- String :
- # The users emotions towards the meal
- String :
- # If average of any type, value indicates amount of entries already included in
- # average calculation
- Int :
- # Third party external ID associated with this entry
- String :
- # Third party associated with the external ID on this entry. One option currently
- # supported is 'AppleHealth'
- String :
- # True if the entry has subentries
- Boolean :
- # A hexadecimal value corresponding to the metric stat of a food entry
- String :
- # A boolean to check if the entry should be hidden from the main client feed
- Boolean :
- # The unique identifier of the entry
- ID! :
- # The associated image of the entry
- Upload :
- # The URL of the entry's associated image
- String :
- # Meal entries of FoodEntry
- Meal!] : [
- # The value of the metric for the entry
- Float :
- # Metric stat as a string
- String :
- # The name for this entry
- String :
- # Other symptom typed by the client
- String :
- # How hungry the poster thinks they were before eating
- Float :
- # User who the entry is about
- User :
- # The water intake previously added
- Int :
- # the users reflections towards the meal
- String :
- # A name of third party source or full name of user who have created the entry
- String :
- # subentries of the Entry
- Entry!] : [
- # Comma-separated list of symptom names
- String :
- # Multiple symptoms ID selected by the client
- String :
- # A name of third party source which actually created the entry
- String :
- # The type for this entry, options are - FoodEntry, WorkoutEntry, MirrorEntry,
- # SleepEntry, NoteEntry, WaterIntakeEntry, PoopEntry', null: false
- String :
- # The last date and time that the entry was updated
- String :
- # A check to see if the entry has been viewed or not
- Boolean :
- }
link Require by
- bulkCreateEntriesPayloadAutogenerated return type of bulkCreateEntries.
- createEntryPayloadAutogenerated return type of createEntry.
- createOrAddToWaterIntakeEntryPayloadAutogenerated return type of createOrAddToWaterIntakeEntry.
- deleteEntryPayloadAutogenerated return type of deleteEntry.
- EntryA post about a client, with different category options
- NotificationA notification
- QueryThe query root of this schema. See available queries.
- updateEntryPayloadAutogenerated return type of updateEntry.