You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe. subgrounds/query.py has all objects related to the AST of GraphQL. Currently, every object is frozen, but nested fields of said objects are not (such as nested lists and dicts). This means the greater objects of Document, etc are not hashable.
Describe the solution you'd like
Ensure all query objects are hashable by using immutable data structures.
Additional context
Likely should be considered with a general refactor / subpackage breakdown of subgrounds/query.py).
Implementation checklist
Task 1
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
subgrounds/query.py
has all objects related to the AST of GraphQL. Currently, every object is frozen, but nested fields of said objects are not (such as nestedlist
s anddict
s). This means the greater objects ofDocument
, etc are not hashable.Describe the solution you'd like
Ensure all query objects are hashable by using immutable data structures.
Additional context
Likely should be considered with a general refactor / subpackage breakdown of
subgrounds/query.py
).Implementation checklist
The text was updated successfully, but these errors were encountered: