OBJECT
ExpenseItem
Fields for an expense item
link GraphQL Schema definition
- type ExpenseItem {
- # Unique identifier for this expense item
- String! :
- # Amount of this item
- Int! :
- # The date on which the item was created
- DateTime! :
- # The date on which the item was last updated
- DateTime! :
- # The date on which the expense took place
- DateTime! :
- # A description for this item. Enforced for new items, but old expenses may not
- # have one.
- String :
- URL :
- }