How to use fuzzy search with graphql API?

I want to use fuzzy search with tolerance parameter.
Is there a way to achieve that with graphql API?

{
  directors(func: match(name@en, Stephen, 8)) {
    name@en
  }
}

Try this https://dgraph.io/docs/graphql/custom/dql/#sidebar

1 Like

thank you, that is something, but still no autocompletion in graphiql and/or graphql code generation with gqless or graphql-codegen

are there any roadmap to see how the GraphQL API will evolve?

This one

That link is not found. Is there any valid link for it? Thanks.