Joshua Schmidt
Joshua Schmidt
I wrote something to fix the issue (see https://github.com/jschmidtnj/docker-build-with-cache-action/commit/562d9b5fb9d7816f93a3526a4aaa79859b850403). It's sort of a hack, but I couldn't figure out a way to get jq to accept duplicate keys (see https://github.com/stedolan/jq/issues/1636)....
this is what I ended up doing: ```go func graphqlMiddleware() gin.HandlerFunc { return func(c *gin.Context) { // before request // set auth c.Request = c.Request.WithContext(context.WithValue(c.Request.Context(), tokenKey, getAuthToken(c.Request))) c.Next() // after...