Alan Plum

Results 79 comments of Alan Plum

Looks like this was actually implemented before and then removed? https://github.com/arangodb/arangodb-docker/commit/50f31d72dac9440550f94e2878b76875ed0ec0ce @dothebart I can't seem to find any explanation for this change. Can you clarify?

If this is a permissions thing, we should just create the file manually (`~/.foxxrc`): ```ini [server.default] url=tcp://127.0.0.1:8999 database=_system username=root password= ``` Please don't remove Foxx-related features without telling me.

One thing I noticed is that `types` in `package.json` is normally supposed to point at a file but in this case it points at the `lib` folder (and the fastify...

FYI @shd8 @cmyk47 this might also be a starting point for overriding auth per-request in Node Foxx if a request user's credentials should be used for calls to ArangoDB. Overriding...

Oops! Quite the oversight, sorry about that. I guess I accidentally dropped that during refactoring. The `Connection` class should store the `config.agentOptions` in a protected property `_agentOptions` and use that...

Interesting! This is probably a bug related to the body handling because the response to the HEAD request still sends the content-type and content-length headers but an empty body. We're...

With regard to AQL in JS template strings it may be worth paying attention to how GraphQL will deal with this: https://github.com/facebook/graphql/issues/79

Looks like most editors support the `tmLanguage` format these days: * VS Code: https://code.visualstudio.com/docs/extensionAPI/language-support * IntelliJ: https://www.jetbrains.com/help/webstorm/textmate-bundles.html * Atom: https://flight-manual.atom.io/hacking-atom/sections/converting-from-textmate/ * SublimeText: http://docs.sublimetext.info/en/latest/extensibility/syntaxdefs.html For reference here's a `tmLanguage` for SQL:...

@monotykamary That looks great! I've just installed it and will give it a spin. I've filed an issue for supporting the [query template tag](https://www.arangodb.com/docs/stable/appendix-java-script-modules-arango-db.html#the-query-helper).