INTERFACE

SelfClaimEdge

An interface to represent the logged in user's relationship to the claimable.

link GraphQL Schema definition

1interface SelfClaimEdge {
2
3# If the user is eligible to claim the object.
4canClaim: Boolean!
5
6# Nullable field for the country where the user redeemed the claimable.
7countryOfResidence: String
8
9# The user ID that is claiming.
10id: ID!
11
12# Nullable status code for if the user cannot claim the object.
13statusCode: String
14
15}