Fix arm32v6 build (#3501)

* Downgrade gqlgen to v0.17.2

The current version of gqlgen (v0.17.24) gives SIGILL crashes on armv7.

* Update gqlparser
This commit is contained in:
WithoutPants
2023-03-02 14:25:59 +11:00
committed by GitHub
parent a081b62823
commit 3dcc23c001
100 changed files with 2731 additions and 4169 deletions

View File

@@ -10,11 +10,11 @@ import (
type parser struct {
lexer lexer.Lexer
err error
err *gqlerror.Error
peeked bool
peekToken lexer.Token
peekError error
peekError *gqlerror.Error
prev lexer.Token
}