Kay Sackey
Kay Sackey
Originally, I wanted to wait till I had patched the bugs. Now, a year later---its mostly not on PyPI because I've never learned what goes into a setup.py file for...
One issue is.... if Nemo loads templates from apps by default, then apps that use the django templates or jinja by default will fail. However, there should be a way...
I'll just note if you're in the dev branch you can load from a schema file like so: ``` with open('./schema.graphqls') as source: document = parse(source.read()) schema = build_ast_schema(document) ```...
You can create a custom scalar that does validation. It’s what I do anyways, when accepting input strings to validate that user data doesn’t contain HTML.
Not sure what you are doing in particular, but Scalars can accept kwargs. You just have to access them via `self.kwargs`
I'm using this currently as a workaround. It's pseudo-code that I extracted from a much larger file, but it's a start on a workable solution. ```javascript componentDidMount(){ if (this.props.start_index <...