Strawberry

from_json

import strawberry


@strawberry.type
class Product:
    id: int
    name: str

    @classmethod
    def from_json(cls, json_data):
        return cls(**json_data)