debug: log show relationships
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
This commit is contained in:
parent
0c80904661
commit
8d55b1303b
1 changed files with 7 additions and 0 deletions
|
|
@ -109,6 +109,13 @@ def read_shows(
|
|||
|
||||
shows = session.exec(query.offset(offset).limit(limit)).all()
|
||||
|
||||
if shows:
|
||||
print(f"DEBUG: Loaded {len(shows)} shows")
|
||||
print(f"DEBUG: First show ID: {shows[0].id}")
|
||||
print(f"DEBUG: First show Venue: {shows[0].venue}")
|
||||
print(f"DEBUG: First show Vertical: {shows[0].vertical}")
|
||||
|
||||
|
||||
return PaginatedResponse(
|
||||
data=shows,
|
||||
meta=PaginationMeta(total=total, limit=limit, offset=offset)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue