fMeow
fMeow
I will look into the CI issue this weekend. It's related to behavior change of arangoDB.
Well, I am a little against the idea to add `Clone` to Document and Header. Say we have a document and a cloned document, and we made different changes in...
With v0.5.0, the arangors has two feature gate to enable rustls on reqwest, which does not require linking external dynamic lib. It should be able to compile into musl without...
Well, I once tried this approach and find myself always comparing the sync and async version to keep these two implementation the same. Whenever a improvement is made on async...
The underlying problem is much more complicated than an alias of `Connection` struct. I am working in progress to replace the current async OR blocking feature gate to async AND...
This violation of addtive rules of rust feature gate is a pain in arangors for a long time. But now I think addtive rules is no long a obligation with...
Thank you for your kind suggetion. I haven't used this feature and I fail to find `QueryExtra` in the arangodb document. Could you please give a link?
This is already inplemented. You can use `aql_query_batch` and `aql_next_batch` to get a Cursor which contains `QueryExtra`. See [`aql_fetch_all`](https://github.com/fMeow/arangors/blob/5b00ca48884e25540eab6343aa7d212dc237a187/src/database.rs#L225) for usage. `aql_fetch_all`, `aql_query` and etc are handy functions for a...
Sorry for the long wait. Personally speaking, I think `Document` type is a wrapper that differentiate a user data structure and a arango Document. When creating data structure, I don't...
Yes, I should emphasize this in readme/doc since it is a hidden breaking change. So bad I didn't come up with `Document` type when implementing AQL. Plus, in my memory,...