Simran

Results 196 comments of Simran

According to our docs, only the autoincrement key generator accepts an offset, but it might just be outdated: https://www.arangodb.com/docs/stable/http/collection-creating.html#create-collection Still, it would only be a workaround. When writing a dump,...

maxkernbach checked and the padded generator does not accept an offset nor is the current value dumped, so no workaround is available. This will require a larger bug fix, for...

There are two upcoming fixes for 3.6 #13424 and #13417 (and for 3.7 as well). I tested them with 3.8.devel and it correctly dumped and restored `lastValue`, and also assigned...

@choppedpork The upcoming bug fixes are limited to the autoincrement and padded key generators and the issue here is about the padded key generator, so I would classify your issue...

FWIW `yum install git` on CentOS 7 installs Git 1.8 something. My workaround is to install a later version using https://ius.io/ in my Docker container (Git 2.24 Core in this...

If you use GitHub Actions, then you can also use the `GITHUB_SHA` environment variable. In bash scripts it can be shortened like so: `${GITHUB_SHA::8}` Using cmd on Windows it should...

https://gitlab.kitware.com/cmake/cmake/issues/19132

That's not possible. If the icons were stroke-based, then the outline width could be adjusted. But they are path based, i.e. a straight horizontal stroke is actually a very flat...

For a video game that involves planets, most standard modifiers would make sense, but it seems rather niche.

If I understand your examples correctly, then what you want to do is this: ```js FOR doc IN identities RETURN doc.@property ``` with the following bind variable: ```json { "property":...