CdsConnector/public/bundles/apiplatform/init-graphql-playground.js
Marko b0f7f04ba6
Some checks failed
continuous-integration/drone/push Build is failing
add deploy.yaml
2022-07-19 15:39:38 +02:00

13 lines
439 B
JavaScript

window.addEventListener('load', function(event) {
var loadingWrapper = document.getElementById('loading-wrapper');
loadingWrapper.classList.add('fadeOut');
var root = document.getElementById('graphql-playground');
root.classList.add('playgroundIn');
var data = JSON.parse(document.getElementById('graphql-playground-data').innerText);
GraphQLPlayground.init(root, {
'endpoint': data.entrypoint
})
});