Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielCamba committed Jun 7, 2022
1 parent c5c7315 commit 7973595
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Token {
priceUsd: BigDecimal
allowedPools: [BigInt!]!
history: [TokenTradingEvent!]! @derivedFrom(field: "token")
hourlyTotals: [TokenDailyTotal!]! @derivedFrom(field: "token")
hourlyTotals: [TokenHourlyTotal!]! @derivedFrom(field: "token")
dailyTotals: [TokenDailyTotal!]! @derivedFrom(field: "token")
numberOfTrades: Int!
totalVolumeUsd: BigDecimal
Expand Down
2 changes: 1 addition & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type Token @entity {
"History of trading for this token"
history: [TokenTradingEvent!]! @derivedFrom(field: "token")
"Hourly totals"
hourlyTotals: [TokenDailyTotal!]! @derivedFrom(field: "token")
hourlyTotals: [TokenHourlyTotal!]! @derivedFrom(field: "token")
"Daily totals"
dailyTotals: [TokenDailyTotal!]! @derivedFrom(field: "token")
"Total trades"
Expand Down

0 comments on commit 7973595

Please sign in to comment.