aiteamutils 0.2.123__tar.gz → 0.2.124__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.123
3
+ Version: 0.2.124
4
4
  Summary: AI Team Utilities
5
5
  Project-URL: Homepage, https://github.com/yourusername/aiteamutils
6
6
  Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
@@ -448,7 +448,8 @@ async def list_entities(
448
448
  List[Dict[str, Any]]: 쿼리 결과 리스트.
449
449
  """
450
450
  try:
451
- query = select(model)
451
+ # 조인된 엔티티도 함께 선택
452
+ query = select(model, *[join_target for join_target in (explicit_joins or [])])
452
453
 
453
454
  # 명시적 조인 적용
454
455
  if explicit_joins:
@@ -0,0 +1,2 @@
1
+ """버전 정보"""
2
+ __version__ = "0.2.124"
@@ -1,2 +0,0 @@
1
- """버전 정보"""
2
- __version__ = "0.2.123"
File without changes
File without changes
File without changes