sortby parameter, where the possible values are either
SortBy.RELEVANCE or SortBy.DATE.
The SortBy parameter is only available in the SDK; the API sorts by relevance.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
sortby parameter, where the possible values are either
SortBy.RELEVANCE or SortBy.DATE.
from bigdata_client import Bigdata
from bigdata_client.query import Entity
from bigdata_client.daterange import RollingDateRange
from bigdata_client.models.search import SortBy
MICROSOFT = "228D42"
bigdata = Bigdata()
search = bigdata.search.new(
query=Entity(MICROSOFT),
date_range=RollingDateRange.LAST_THIRTY_DAYS,
sortby=SortBy.DATE,
)
documents = search.run(2)
print(documents)
Was this page helpful?