income
Income entered in fact find
GraphQL Schema
extend type query {
"""Income entered in fact find"""
income(userId: ID!, incomeId: ID!): Income
}
Arguments
| Name | Type | Description |
|---|---|---|
| userId | ID! | Unique ID of the user |
| incomeId | ID! |
Response Shape
This query returns Income
| Name | Type | Description |
|---|---|---|
| id | ID! | Unique ID of the object |
| userId | ID! | Unique ID of the user |
| owners | [Person]! | |
| name | String | |
| annualIncome | Money | |
| annualBonus | Money |