Sergey Verentsov

Results 2 comments of Sergey Verentsov

Failed to reproduce on same versions of Fedora and Gnome Shell. May there be some conficts with other clipboard management software?

I managed to solve this by explicitly stating `posts` field in `User`: ```python class User(MongoengineObjectType): class Meta: model = UserModel posts = graphene.Field(graphene.List(lambda: Post)) class Post(graphene.Union): class Meta: types =...