dapalex / py-graphql-mapper

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/issues
MIT License
20 stars 2 forks source link

mapping - Hybrid argument passing #13

Open dapalex opened 1 year ago

dapalex commented 1 year ago

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