Open
Description
Endpoint PUT /_api/cursor/{cursor-identifier}
(PutCursorAsync.PutCursorAsync
) is deprecated in ArangoDB 3.7 in favor of a new endpoint POST /_api/cursor/{cursor-identifier}
.
It is likely that the endpoint will be removed in a future version, so we should make the change at some point.
We could:
- Create a new endpoint method, e.g.
PostExistingCursor
- Add another method overload to
PostCursorAsync
though it may not be very clear from a consumer point of view
There is also the question of compatibility with previous ArangoDB version. It might be a good idea to keep PutCursorAsync
and mark it as "up to ArangoDB 3.6".