We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if enable this line :
```
// if (empty($this->inDevelopment)) { // $this->astCache->set($cid, json_encode($ast), CacheBackendInterface::CACHE_PERMANENT, ['graphql']); // }
got 502 error
``` protected function getSchemaDocument(array $extensions = []) { // Only use caching of the parsed document if we aren't in development mode. $cid = "schema:{$this->getPluginId()}"; // if (empty($this->inDevelopment) && $cache = $this->astCache->get($cid)) { // return json_decode($cache->data); // } $extensions = array_filter(array_map(function (SchemaExtensionPluginInterface $extension) { return $extension->getBaseDefinition(); }, $extensions), function ($definition) { return !empty($definition); }); $schema = array_merge([$this->getSchemaDefinition()], $extensions); $ast = Parser::parse(implode("\n\n", $schema)); // if (empty($this->inDevelopment)) { // $this->astCache->set($cid, json_encode($ast), CacheBackendInterface::CACHE_PERMANENT, ['graphql']); // } return $ast; }
The text was updated successfully, but these errors were encountered:
uh.. same issue, i have solved it, see here #1268
Sorry, something went wrong.
好的,谢谢,一会试试
No branches or pull requests
if enable this line :
// if (empty($this->inDevelopment)) {
// $this->astCache->set($cid, json_encode($ast), CacheBackendInterface::CACHE_PERMANENT, ['graphql']);
// }
got 502 error
The text was updated successfully, but these errors were encountered: