add Order Entity and API Basics

This commit is contained in:
Marko
2022-06-22 17:02:10 +02:00
parent ea473db7bf
commit f35f8adceb
42 changed files with 3720 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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
})
});