mirror of
https://github.com/rjNemo/graphql_python_template
synced 2026-06-06 02:26:47 +00:00
6 lines
163 B
Python
6 lines
163 B
Python
from app.models.user import User
|
|
from app.repositories.users import get_user_by_id
|
|
|
|
|
|
def read_user_by_id(user_id: str) -> User:
|
|
return get_user_by_id(user_id)
|