Skip to content
New issue

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

fix(GRAPHQL): Added support for exact index on field having @id directive. (#7534) #7551

Merged
merged 1 commit into from
Mar 11, 2021

Commits on Mar 11, 2021

  1. fix(GRAPHQL): Added support for exact index on field having @id direc…

    …tive. (#7534)
    
    Currently we add hash index on a field of type String! @id by default. And as index exact and hash are not compatible , user can't add exact index on such field and can't take advantage of comparator functions like lt,le,gt,ge.
    
    To allow this we now changing that behavior, i.e. for a field of type String! @id @search(by:[exact]) , we don't generate default hash index and only generate exact index.
    
    (cherry picked from commit 195f247)
    JatinDev543 committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    6f78651 View commit details
    Browse the repository at this point in the history