-
I noticed something when I ran a query similar to this one lately:
```
LET empty_array = (
FOR person in persons
FILTER person.name == 'asdfasdfw5235235' // Non-existing user returing empty arr…
-
Hello,
every time I change a saved query on the GUI, its asked of the name that I should save.
I think the expected behavior is to overwrite the existed one. Maybe also adding a "Save as" button to pr…
-
Hi,
My compagny is considering moving from OrientDB to ArangoDB.
Is there some AQL syntax or way to achieve OrientDB SQL fetchplan ?
Thanks.
-
When i run this query on 3.0.1:
`{
query: "FOR i in collection SORT @someAttribute return i",
bindVars:{someAttribute: 'i.lastName'}
}
`
The result not/randomly sorted. These type of queries worked on…
-
Hi,
I have a **Edge Collection** with Name: **Contact**.
Now, I want to retrieve a document of my **edge** according of two field: _from , _to.
this my raw query, that fine worked in the query edito…
-
consider the following code.
collection `posts` have skiplist on [tid, toc]
``` aql
//specify a thread
let t = document(threads,'80267')
let lm = (
FOR p IN posts
FILTER p.ti…
-
After adding a user per web interface, it doesn't appear in users (but is created in the collection). The user also doesn't appear in the user dropdown when adding a database.
The only visible user is…
-
I'm writing a Foxx service using ES6. I executed `node --v8-options | ag "in progress"` to get all available harmony flags:
``` bash
--harmony_modules (enable "harmony modules" (in progress))
--h…
-
I'm seeing an error for below transaction (tested with current devel):
> unregistered collection used in transaction: users
``` js
db._executeTransaction({
collections: {
read: "users",
a…
-
i use arangojs for nodejs
``` javascript
userDocument = {
name: 'Ololo',
age: 11,
sessions: [
{key: 324342},
{key: 675604}
]
}
```
how i can select this document by session key ?
`l…