Max
Max
@smurphy8 you can just omit the script tag at the bottom in a custom Html template https://github.com/phenomic/phenomic/blob/1a896add371a7903f9633457104f2caff78736c3/examples/react-app-blog/Html.js#L28 then the frontend won't try to load js, and you will basically have...
You can just throw a custom Html.js, even if you use reasonml. Like I do :D https://github.com/MoOx/moox.io/blob/d8e6124f73bc27b0c1e341f5bae292186e46723b/Html.js This should work by just dropping a Html.js file at the root of...
@smurphy8 try removing `` :D
Thanks for the feedbacks. Will try to improve that.
Can you try to put a `.nojekyll` (empty) file at the root of your public/ folder (or directly at the root of gh-pages branch just to try) if that is...
I already got similar issues in the past and found this https://help.github.com/articles/files-that-start-with-an-underscore-are-missing/ that helped me. I will try to have a look in a few days. Contribution welcome if you...
I will try to make this invisible to end users, probably by avoiding this `.../.json` files.
I am facing similar issue where a query could take around 40s to compile. If you want to reproduce use this server https://dame.bio/graphql and try the following query ``` query...
In short, would this PR avoid to have graphql server yelling if we send None value in a mutation when undefined is supposed to be accepted?
@baransu Yeah sorry, forgot that undefined isn't a thing in JSON. This PR does what I need: omit None values. Would love to see that released. @mhallin Can we do...