py-graphql-mapper
py-graphql-mapper copied to clipboard
A python library for generating GraphQL queries and mutations using plain python objects, no hardcoded strings.Any questions or issues, please report here https://github.com/dapalex/py-graphql-mapper/...
Allow the creation of operations with arguments as literal values and arguments with variables. E.g.: query example($arg1: Int) { payload(argument1: $arg1, argument2: "def") { id } }
I have a schema that has queries that require inline fragments. Is there something I'm missing that allows that to to render properly or potential modification I can do to...