- due to indexing performance issues, removed
deriveFrom
from fields
- updated GraphQL to not use
deriveFrom
GraphQL
type Balance @entity {
id: ID!
owner: String!
balance: BigDecimal!
# token
code: String!
symcode: String!
sym: String!
precision: BigInt!
# delete mutations
is_deleted: Boolean!
# order by
timestamp: Timestamp! # microseconds
block_number: BigInt!
block_date: String!
}
type Supply @entity {
id: ID!
supply: BigDecimal!
max_supply: BigDecimal!
# token
code: String!
symcode: String!
sym: String!
precision: BigInt!
# delete mutations
is_deleted: Boolean!
# order by
timestamp: Timestamp! # microseconds
block_number: BigInt!
block_date: String!
}
type Token @entity {
id: ID!
code: String!
symcode: String!
sym: String!
precision: BigInt!
# order by
timestamp: Timestamp! # microseconds
block_number: BigInt!
block_date: String!
}