OBJECT

SendCheerPayload

link GraphQL Schema definition

1type SendCheerPayload {
2
3# currentUser is the authenticated user object which includes the updated `Wallet`
4# info after the message bits have been spent.
5currentUser: User
6
7# id is the client-generated value passed in as part of the request.
8id: ID!
9
10# If any validation errors occur, this will not be nil.
11validationError: SendCheerValidationError
12
13}