OBJECT
BountyBoardSettings
Bounty board settings configure how a user can interact with the Bounty Boards feature.
link GraphQL Schema definition
1 type BountyBoardSettings { 2 3 # This determines whether or not a user has a bounty board notification. 4 : Boolean! 5 6 # This determines whether the user has the Bounty Boards feature enabled. 7 : Boolean! @deprecated( reason: "Use 'status' instead." ) 8 9 # The user's status on Bounty Board. 10 : BountyBoardUserStatus! 11 12 }