| 39 | link = graphene.Field(LinkNode) |
| 40 | |
| 41 | class Input: |
| 42 | url = graphene.String() |
| 43 | description = graphene.String() |
| 44 | |
| 45 | def mutate_and_get_payload(root, info, **input): |
| 46 | user = info.context.user or None |
nothing calls this directly
no outgoing calls
no test coverage detected