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
+118-2Lines changed: 118 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# API Reference
2
2
3
3
-[ObjectType](#ObjectType)
4
+
-[MutationType](#MutationType)
4
5
-[SubscriptionType](#SubscriptionType)
5
6
-[InputType](#InputType)
6
7
-[ScalarType](#ScalarType)
@@ -150,6 +151,91 @@ class UsersGroupType(ObjectType):
150
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.
151
152
152
153
154
+
## `MutationType`
155
+
156
+
Convenience type for defining single mutation:
157
+
158
+
```python
159
+
from ariadne_graphql_modules import MutationType, convert_case, gql
0 commit comments