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?