After upgrading to Pro 2.9.2 (ArcGIS for Python API 1.9.1) the layer[<index>].attachments.search() method only return the first 1000 features.
data = FeatureLayerCollection(<valid feature service>, <valid GIS>)
main_attach = pd.DataFrame(data.layers[0].attachments.search())
#returns df with only the first 1000 attachment records
This is the main feature layer from a feature service created with Survey123. This only started happening since upgrading.
How do I override this?