ArangoDB is a NoSQL database with graphs support. Its key features are schemaless documents, key/value store, transactions and joins, also ArangoDB allows for multi-master clustering and horizontal scalability.
Questions tagged [arangojs]
113 questions
0
votes
1 answer
How Do I Implement Search Like Feature For NodeJS App Which Using ArangoJS(ArangoDB)
{
sno : "1",
name: "abc",
comment1: "dd cdt djdhj",
myComment: "adt dtt cdt abc"
}
{
sno : "2",
name: "adc",
comment1: "dd ddt djdhj",
myComment: "adt t cdt abc"
}
{
sno : "3",
name: "ab",
comment1: "dd…

Yuvaraj V
- 1,020
- 2
- 16
- 28
0
votes
1 answer
Using NodeJs Style function callbacks with ArangoJS 3.x
Is it possible to use NodeJs like function Callbacks with ArangoJs 3.x;
I have seen that ArangoJs 3.x using .then method (promises)..
But I am using NodeJs 4.4 .. so i can't use .then method there.. Can I use nodejs like function callbacks for…

Yuvaraj V
- 1,020
- 2
- 16
- 28
0
votes
3 answers
How to get the root node's key of a graph in ArangoDB?
I have a graph in ArangoDB whose root node is 'X'. Now "a,b,c,d,e,f" are the siblings of 'X' direct or grand grand siblings. Now from a given siblings node "a,b,c,d,e or f" I want to get to node 'X'. Is there any general AQL query to traverse…

Haseb Ansari
- 587
- 1
- 7
- 23
0
votes
1 answer
store data in variable arangojs
as working on node.js, I have a collection called IoTCollection contains one document
{id: 1,
sensor: 12
}
I need to store the returned data into a variable
var my data = db.query('FOR sensor in IoTCollection return sensor.sensorType');
but it…

Slyfer
- 1
0
votes
1 answer
Getting list of connected nodes for a given node in arangodb
I have constructed a graph in Arangodb.
I'm struggling to get the below requirement.
Given a node, and i need a list of all the nodes connected to it along with the depth it is connected to.
Example:
Customer2 -> connected to Customer1 at depth of…

mahi
- 59
- 3
0
votes
2 answers
How to Compare Two Similar Graphs in ArangoDB that the result would yield the difference in Paths and Vertices?
I have two Graphs and I wanted to compare the difference between them. As a result from the AQL query I want only the difference in path and vertices between them. Is there any query in ArangoDb for it. Please let me know if its possible. Thanks in…

Haseb Ansari
- 587
- 1
- 7
- 23
0
votes
1 answer
Configuring label attributes in Graph Viewer
When creating graphs for viewing in the ArangoDB Web Interface, I am having some issues with labels for Vertices and Edges:
I can only set Vertex/Edge attributes to simple keys. I cannot get deeper object references working.e.g. a vertex label…

David Thomas
- 2,264
- 2
- 18
- 20
-1
votes
0 answers
How to use Arango Pregel Algorithms
Give some Ideas to use Pregel Algorithms.
Give some Ideas to use Pregel Algorithms like Page rank......
I need to use Pregel Algorithm for project using java. I also referred some…