goal
Goal entered in fact find
GraphQL Schema
extend type query {
"""Goal entered in fact find"""
goal(userId: ID!, goalId: UUID!): Goal
}
Arguments
| Name | Type | Description |
|---|---|---|
| userId | ID! | Unique ID of the user |
| goalId | UUID! |
Response Shape
This query returns Goal
| Name | Type | Description |
|---|---|---|
| id | UUID! | Unique ID of the object |
| userId | ID! | Unique ID of the user |
| priority | Int | |
| owners | [Person]! | |
| name | String | |
| targetDate | Date | |
| valueToSave | Money | |
| goalType | GoalType | |
| goalData | GoalData |