We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
to NFTEntity add new field sequence that should be either BigInt or Int
NFTEntity
sequence
BigInt
Int
type NFTEntity @entity { sequence: BigInt! // or Int! }
How to fill that?
Derive the number value from sn
sn
sn = '00000000000008' sequence = BigInt(sn)
Because sorting based on SN is not correct (because sn is String)
I am not sure how bigint would behave in sort (maybe check first some ordering via blockNumber if it's correctly sorted)
Yeah the other alternative is to remap sn into BigInt or Int but I am not sure what will we break on frontend
BigInt or Int
The text was updated successfully, but these errors were encountered:
No branches or pull requests
to
NFTEntity
add new fieldsequence
that should be eitherBigInt
orInt
type NFTEntity @entity {
sequence: BigInt! // or Int!
}
How to fill that?
Derive the number value from
sn
Why
Because sorting based on SN is not correct (because sn is String)
Why Int or BigInt?
I am not sure how bigint would behave in sort (maybe check first some ordering via blockNumber if it's correctly sorted)
Have you considered any alternatives?
Yeah the other alternative is to remap sn into
BigInt or Int
but I am not sure what will we break on frontendThe text was updated successfully, but these errors were encountered: