| 55 | posted_by = graphene.Field(UserType) |
| 56 | |
| 57 | class Arguments: |
| 58 | url = graphene.String() |
| 59 | description = graphene.String() |
| 60 | |
| 61 | def mutate(self, info, url, description): |
| 62 | user = info.context.user or None |
nothing calls this directly
no outgoing calls
no test coverage detected