Maksym Stukalo
Results
3
issues of
Maksym Stukalo
Hi, here is my sample: ```python from dataclasses import dataclass from marshmallow import Schema, fields class TestSchema(Schema): id = fields.Integer() name = fields.String() @dataclass class Data: id: int @property def...
I don't know, maybe it's not a bug and problem caused by rx, but i have this mutation ```python class ExtendedMutation(graphene.Mutation): ok = graphene.Boolean() code = graphene.Int() message = graphene.String()...