py-graphql-mapper icon indicating copy to clipboard operation
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/...

Results 2 py-graphql-mapper issues
Sort by recently updated
recently updated
newest added

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 } }

enhancement

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...