Browse Source

Fix the contribution BountyFundedEvents name and description

Theophile Sandoz 3 years ago
parent
commit
269f9c46a5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      query-node/schemas/bounty.graphql

+ 2 - 2
query-node/schemas/bounty.graphql

@@ -211,8 +211,8 @@ type BountyContribution @entity {
   amount: BigInt!
 
   # Events
-  "The event the contribution was created in"
-  createdInEvent: [BountyFundedEvent] @derivedFrom(field: "contribution")
+  "Events the contribution was created and updated in"
+  bountyFundedEvents: [BountyFundedEvent!]! @derivedFrom(field: "contribution")
 
   "Event emitted if the contribution is withdrawn"
   withdrawnInEvent: BountyFundingWithdrawalEvent @derivedFrom(field: "contribution")