Our application retrieves features from an arcGIS service and stores information (goegraphy, attributes, attachments) on them in our application database.
When the time comes to check what's new and different between our application database and the service, it's reasonably straightforward to retrieve features and their geometry/attributes (that's a single GET call to the feature service), but for attachments we must make a separate GET request for the array of attachments for each object. That's a lot of requests.
Is there a way to return the full array of attachments for a particular feature service, with OBJECTID or GlobalID in the response? Or alternatively, is there a way that the GET response for features can include the attachment array?
Pardon any incorrect use of terminology here; I'm primarily working on the application side rather than the GIS side of this project.