mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-22 09:36:44 +03:00
Use more Pythonic terminology here
"Hash" in the Python world implies a cryptographic hash, or possibly a checksum. Here, I believe "hash" is being used to mean "hash map", which would be more commonly known in Python as a dictionary, or dict for short.
This commit is contained in:
parent
e71a52140a
commit
834d52f9d3
|
@ -19,7 +19,7 @@ Middlewares ``resolve`` is invoked with several arguments:
|
|||
- ``next`` represents the execution chain. Call ``next`` to continue evalution.
|
||||
- ``root`` is the root value object passed throughout the query.
|
||||
- ``info`` is the resolver info.
|
||||
- ``args`` is the hash of arguments passed to the field.
|
||||
- ``args`` is the dict of arguments passed to the field.
|
||||
|
||||
Example
|
||||
-------
|
||||
|
|
Loading…
Reference in New Issue
Block a user