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
Copy file name to clipboardExpand all lines: REFERENCE.md
+35-3
Original file line number
Diff line number
Diff line change
@@ -151,12 +151,44 @@ class UsersGroupType(ObjectType):
151
151
`DeferredType` makes `UserType` happy about `UsersGroup` dependency, deferring dependency check to `make_executable_schema`. If "real" `UsersGroup` is not provided at that time, error will be raised about missing types required to create schema.
152
152
153
153
154
+
### `__fields_args__`
155
+
156
+
Optional attribute that can be used to specify custom mappings between GraphQL args and Python kwargs:
157
+
158
+
```python
159
+
from ariadne_graphql_modules import DeferredType, ObjectType, gql
0 commit comments