Micro fixes.

This commit is contained in:
2024-02-15 10:21:51 +00:00
parent 0bdea741bf
commit ebbb1c53f5
4 changed files with 26 additions and 1 deletions
+2 -1
View File
@@ -75,6 +75,7 @@ type parseGraphQLQueryResult struct {
operationName string
cacheRequest bool
cacheTime int
cacheRefresh bool
shouldBlock bool
shouldIgnore bool
}
@@ -144,7 +145,7 @@ func parseGraphQLQuery(c *fiber.Ctx) (res *parseGraphQLQueryResult) {
}
}
if arg.Name.Value == "refresh" {
res.cacheRequest = arg.Value.GetValue().(bool)
res.cacheRefresh = arg.Value.GetValue().(bool)
}
}
}