INTERFACE

Claimable

An interface to represent a claimable thing.

link GraphQL Schema definition

1interface Claimable {
2
3# A description of what the claimable is.
4description: String!
5
6# The ID of the claimable.
7id: ID!
8
9# A field that is populated with relevant information about claiming the object
10# given a valid logged in user.
11self: SelfClaimEdge
12
13# The type of claimable.
14type: ClaimableType!
15
16}