Appreciation
An Appreciation
ties an economic event given in loose fulfilment for another economic event, without commitments or expectations. It is a key component for supporting gift economies.
Types
Appreciation
Appreciation
Represents the act of giving one economic event in appreciation for another.
id
ID!
Unique identifier for the appreciation.
revisionId
ID!
The identifier of the last revision of this appreciation.
appreciationOf
EconomicEvent!
The economic event being acknowledged.
appreciationWith
EconomicEvent!
The economic event given as a gift.
note
String
A textual description or comment.
Queries
appreciation(id: ID!)
appreciation(id: ID!)
Retrieves a single Appreciation
by its id
.
appreciations(first: Int, after: String, last: Int, before: String)
appreciations(first: Int, after: String, last: Int, before: String)
Retrieves a paginated list of all Appreciation
records.
Mutations
createAppreciation(appreciation: AppreciationCreateParams!)
createAppreciation(appreciation: AppreciationCreateParams!)
Creates a new Appreciation
.
updateAppreciation(appreciation: AppreciationUpdateParams!)
updateAppreciation(appreciation: AppreciationUpdateParams!)
Updates an existing Appreciation
.
deleteAppreciation(revisionId: ID!)
deleteAppreciation(revisionId: ID!)
Deletes an Appreciation
.
Related Types
Input: AppreciationCreateParams
AppreciationCreateParams
appreciationOf
ID!
The ID of the EconomicEvent
being acknowledged.
appreciationWith
ID!
The ID of the EconomicEvent
being given as a gift.
note
String
A textual description or comment.
Input: AppreciationUpdateParams
AppreciationUpdateParams
revisionId
ID!
The revision ID of the appreciation to update.
appreciationOf
ID
The ID of the EconomicEvent
being acknowledged.
appreciationWith
ID
The ID of the EconomicEvent
being given as a gift.
note
String
A textual description or comment.
Response: AppreciationResponse
AppreciationResponse
appreciation
Appreciation!
The Appreciation
that was created or updated.
Connection: AppreciationConnection
AppreciationConnection
edges
[AppreciationEdge!]!
A list of appreciation edges.
pageInfo
PageInfo!
Information to aid in pagination.
Edge: AppreciationEdge
AppreciationEdge
node
Appreciation!
The Appreciation
record.
cursor
String!
A cursor for use in pagination.
Last updated