Semicolons break fulltext search

When I enter any string containing a semicolon in the search function of my app, I get the error

“no query string supplied in request”

This is a sample GraphQL query that produces the error

query MyQuery {
  queryStems(filter: {name: {alloftext: "text;with;semicolons"}}) {
    id
    name
    price
  }
}

The issue does not occur when the same query is used in the Dgraph Cloud Explorer for some reason.
I’m using the Docker dgraph/standalone:latest image.

Am I missing something here? Is there some reason that semicolons should produce an error in fulltext search?

Dgraph Cloud Explorer I think is still using 21.03, you should file this as a bug on the repo: Sign in to GitHub · GitHub

1 Like

Okay, done.

1 Like