Skip to content

Fix variable_values spelling in docs #226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/usage/file_upload.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ See `Streaming uploads on aiohttp docs`_.


In order to stream local files, instead of providing opened files to the
`variables_values` argument of `execute`, you need to provide an async generator
`variable_values` argument of `execute`, you need to provide an async generator
which will provide parts of the files.

You can use `aiofiles`_
Expand Down
2 changes: 1 addition & 1 deletion gql/transport/aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ async def execute(
:code:`execute` on a client or a session.

:param document: the parsed GraphQL request
:param variables_values: An optional Dict of variable values
:param variable_values: An optional Dict of variable values
:param operation_name: An optional Operation name for the request
:param extra_args: additional arguments to send to the aiohttp post method
:param upload_files: Set to True if you want to put files in the variable values
Expand Down