OBJECT

BountyBoardSettings

Bounty board settings configure how a user can interact with the Bounty Boards feature.

link GraphQL Schema definition

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