def resolve_human(self, info, id): return resolver_human(id=id)
def resolve_human(self, info, id): if info.context.user.is_anonymous: raise Exception('You are not authenticated!') return resolver_human(id=id)