open:strawberry

Strawberry

import strawberry


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

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


  • open/strawberry.txt
  • 마지막으로 수정됨: 2021/10/28 01:27
  • 저자 127.0.0.1