| 15 | |
| 16 | |
| 17 | class Mutation( |
| 18 | users.schema.Mutation, |
| 19 | links.schema.Mutation, |
| 20 | links.schema_relay.RelayMutation, |
| 21 | graphene.ObjectType, |
| 22 | ): |
| 23 | token_auth = graphql_jwt.ObtainJSONWebToken.Field() |
| 24 | verify_token = graphql_jwt.Verify.Field() |
| 25 | refresh_token = graphql_jwt.Refresh.Field() |
| 26 | |
| 27 | |
| 28 | schema = graphene.Schema(query=Query, mutation=Mutation) |
nothing calls this directly
no outgoing calls
no test coverage detected