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
We need to restore the ilike functionality, i.e. case unsensitive search, to fix the current querying set up:
ilike
const queryRes = await request(HYPERCERTS_API_URL_GRAPH, query, { where: { creator_address: { eq: creatorAddress.toLowerCase() } }, });
const queryRes = await request(HYPERCERTS_API_URL_GRAPH, query, { where: { fractions: { owner_address: { eq: getAddress(ownerAddress) } } }, });
It appears that the addresses are stored using different formats, but regardless the API shouldn't care to facilatate easier querying
The text was updated successfully, but these errors were encountered:
This is done, right @bitbeckers?
Sorry, something went wrong.
No branches or pull requests
We need to restore the
ilike
functionality, i.e. case unsensitive search, to fix the current querying set up:It appears that the addresses are stored using different formats, but regardless the API shouldn't care to facilatate easier querying
The text was updated successfully, but these errors were encountered: