-
Notifications
You must be signed in to change notification settings - Fork 2.8k
remove graphiql fork #3073
New issue
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
remove graphiql fork #3073
Conversation
|
Deploy preview for hasura-docs ready! Built with commit d62e1fe |
|
Review app for commit 87a6bb7 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit 3ce06e2 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit 7d719b5 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
…ngine into remove-graphiql-fork-v2
|
Review app for commit 89dba85 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit 6c07eb3 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
…ngine into remove-graphiql-fork-v2
|
Review app for commit d04b88a deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
/heroku deploy |
1 similar comment
|
/heroku deploy |
|
Review app for commit 3d88ba4 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit 4a63806 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit 3c16483 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit ca1c027 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit d62e1fe deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit b600425 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
beerose
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console/src/components/Services/ApiExplorer/Analyzer/AnalyzeButton.js
Outdated
Show resolved
Hide resolved
console/src/components/Services/ApiExplorer/Analyzer/AnalyzeButton.js
Outdated
Show resolved
Hide resolved
console/src/components/Services/ApiExplorer/Analyzer/AnalyzeButton.js
Outdated
Show resolved
Hide resolved
console/src/components/Services/ApiExplorer/Analyzer/AnalyzeButton.js
Outdated
Show resolved
Hide resolved
console/src/components/Services/ApiExplorer/Analyzer/AnalyzeButton.js
Outdated
Show resolved
Hide resolved
| handleAnalyseNodeChange(e) { | ||
| let nodeKey = e.target.getAttribute('data-key'); | ||
| if (nodeKey) { | ||
| nodeKey = parseInt(nodeKey, 10); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not a big deal, but let's not mutate here and just make new constant:
const nodeKey = e.target.getAttribute('data-key');
if (nodeKey) {
const parsedNodeKey = parseInt(nodeKey, 10);
console/src/components/Services/ApiExplorer/ApiCollectionPanel/ApiCollectionPanel.js
Outdated
Show resolved
Hide resolved
console/src/components/Services/ApiExplorer/GraphiQLWrapper/GraphiQLWrapper.js
Outdated
Show resolved
Hide resolved
console/src/components/Services/ApiExplorer/GraphiQLWrapper/GraphiQLWrapper.js
Outdated
Show resolved
Hide resolved
console/src/components/Services/ApiExplorer/GraphiQLWrapper/GraphiQLWrapper.js
Outdated
Show resolved
Hide resolved
|
Review app for commit 4433862 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
console/src/components/Services/ApiExplorer/Analyzer/AnalyzeButton.js
Outdated
Show resolved
Hide resolved
|
Review app for commit 413464b deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit 061c5ad deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit b2d7211 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app for commit 2111ee5 deployed to Heroku: https://hge-ci-pull-3073.herokuapp.com |
|
Review app https://hge-ci-pull-3073.herokuapp.com is deleted |
…glify with terser (hasura#3073)
Description
Currently we use a fork of GraphiQL. They did a major rehaul which does not let us pull the newer updates from upstream. This PR integrates GraphiQL fork with Hasura console and moves all our logic in the console code base
Affected components
Related Issues
Solution and Design
Steps to test and verify
Limitations, known bugs & workarounds