Browse Source

Remove contributions `maxFundingReachedEvent`

Theophile Sandoz 3 years ago
parent
commit
b5057af8dd
2 changed files with 0 additions and 6 deletions
  1. 0 3
      query-node/schemas/bounty.graphql
  2. 0 3
      query-node/schemas/bountyEvents.graphql

+ 0 - 3
query-node/schemas/bounty.graphql

@@ -221,9 +221,6 @@ type BountyContribution @entity {
   "The event the contribution was created in"
   createdInEvent: BountyFundedEvent! @derivedFrom(field: "contribution")
 
-  "Event emitted if the bounty reached its maximum funding amount"
-  maxFundingReachedEvent: BountyMaxFundingReachedEvent @derivedFrom(field: "contribution")
-
   "Event emitted if the contribution is withdrawn"
   withdrawnInEvent: BountyFundingWithdrawalEvent @derivedFrom(field: "contribution")
 }

+ 0 - 3
query-node/schemas/bountyEvents.graphql

@@ -116,9 +116,6 @@ type BountyMaxFundingReachedEvent implements Event @entity {
 
   "Related bounty"
   bounty: Bounty!
-
-  "Related bounty contribution"
-  contribution: BountyContribution!
 }
 
 type BountyFundingWithdrawalEvent implements Event @entity {