コード例 #1
0
ファイル: views.py プロジェクト: njncalub/apistar-mongoengine
def get_post(post_id: str) -> PostType:
    instance = PostModel.filter(id=post_id).first_or_404()

    return PostType(instance)