Any joy on fixing the playground from hogging CPU?...
# orm-help
r
Any joy on fixing the playground from hogging CPU? I've found the cause, just no idea where to file the issue. CSS animation is causing it (I'm guessing it's animating the box-shadow which will hog the cpu):
Copy code
display: block;
  width: 8px;
  height: 8px;
  box-shadow: rgba(139, 149, 156, 0.4) 0px 0px 0px;
  border-radius: 50%;
  background: rgb(139, 149, 156);
  animation: cdRpRa 2s ease 0s infinite normal none running;
h
cc @huv1k BTW he is on holiday so this will take some time. Please understand
r
@Harshit can I do a PR? Because the playground is pulling in a remote resource, there's no way for me (or anyone else) to pin to a version. I just don't know where the source repo is.
h
Yes, you can do a PR.
r
For context, I open the graphql playground run my query and immediately have to exit it so that I'm able to carry on development.
(if you know the repo, can you sling it my way?)
If you don't have the time, you can also use some other graphql-client in the meanwhile till we fix this
h
Hey, i am on vacation but you can disable pooling of schema.
r
@huv1k spotted the config option - thank you!