We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 966559f commit c6cbb85Copy full SHA for c6cbb85
api_server/adh6/network/storage/port_repository.py
@@ -52,6 +52,7 @@ def search_by(self, limit=DEFAULT_LIMIT, offset=DEFAULT_OFFSET, terms=None, filt
52
query = query.filter(SQLPort.switch_id == filter_.switch_obj)
53
54
count = query.count()
55
+ query = query.order_by(SQLPort.chambre_id.asc())
56
query = query.order_by(SQLPort.id.asc())
57
query = query.offset(offset)
58
query = query.limit(limit)
0 commit comments