To run script with default arguments:
python main.pyHelp with usage arguments for script:
python main.py -hExample of using a script with custom arguments:
python main.py -p kotlin -d ./dest/kotlin_dest_folder -src ./graphQLExample.graphqlIn this case, the script generates kotlin files according to GraphQL samples from graphQLExample.graphql file and put them in ./dest/kotlin_dest_folder folder
To test code:
cd tests/
py.testTo see coverage report:
open coverage_html/index.html