Hi our community,
I’m using Python 3 with legacy bundled in my project so I can access Search index of Google App Engine from my application.
It’s working as normal.
However, starting from 14th December, 2024, I have seen that the Search index not working with offset parameter anymore (I have no changes for it).
Other parameters like limit, sort_options are still working as expected. Really weird!!!
search.Query(
query_string=query,
options=search.QueryOptions(
offset=offset,
limit=limit,
sort_options=search.SortOptions(
expressions=[
search.SortExpression(
expression=expression,
direction=direction
)
]
)
),
)
Do you know how to deal with it?
Thanks,