MCPcopy
hub / github.com/redis/redis-py / SortbyField

Class SortbyField

redis/commands/search/query.py:379–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

377
378
379class SortbyField:
380 def __init__(self, field: str, asc=True) -> None:
381 self.args = [field, "ASC" if asc else "DESC"]

Calls

no outgoing calls