mirror of
https://github.com/rjNemo/graphql_python_template
synced 2026-06-06 10:36:40 +00:00
8 lines
172 B
Python
8 lines
172 B
Python
from typing import List
|
|
|
|
from app.models.user import User
|
|
from app.repositories.users import get_all_users
|
|
|
|
|
|
def read_all_users() -> List[User]:
|
|
return get_all_users()
|