Questions tagged [foxx]

ArangoDB Foxx can serve as a lean application server in any single page application. Create your single page app using the database, JavaScript, HTML, CSS and images, store everything in ArangoDB’s apps directory and voilà–you are done. It’s simple, rapid and all JavaScript.

ArangoDB Foxx can serve as a lean application server in any single page application. Create your single page app using the database, JavaScript, HTML, CSS and images, store everything in ArangoDB’s apps directory and voilà–you are done. It’s simple, rapid and all JavaScript.

133 questions
0
votes
0 answers

Dynamic queries with ArangoDB

I am looking to write dynamic queries for an ArangoDB graph database and am wondering if there are best practices or standard approaches to doing it. By 'dynamic queries' I mean that users would have the ability to build a query that is then…
David Thomas
  • 2,264
  • 2
  • 18
  • 20
0
votes
1 answer

How to profile memory usage in an ArangoDB Foxx App

Stress testing my Foxx App eventually crashes ArangoDB with a SIGSEGV. Looking at the core file it seems to be related to V8 running out of memory. I'd like to do memory profiling on the heap to help track down potential leaks. Since the V8…
ggendel
  • 403
  • 3
  • 9
0
votes
1 answer

Access ArangoDB data from client side

I am new to ArangoDB, it is very nice that it can host micro-services directly in the database. How would I go about sending queries / loading data directly from the client side (Jquery or Angular or whatever) across different domain names?…
Nick M
  • 2,424
  • 5
  • 34
  • 57
0
votes
1 answer

Detect "test" environment in Foxx

Currently, I can only detect development and production environments by .gitignoreing my config file, where I can explicitly set either process.env.ENV = 'prod' or process.env.ENV = 'devel' depending on the current environment. And I can be sure…
artnikpro
  • 5,487
  • 4
  • 38
  • 40
0
votes
1 answer

collection.all().limit(n) not working in FOXX

I have this code inside my FOXX play application var geodata = new Geodata( applicationContext.collection('geodata'), {model: Geodatum} ); /** Lists of all geodata. * * This function simply returns the list of all Geodatum. …
user2665694
0
votes
1 answer

Arangodb: Is it possible to use an existing collection within Foxx

I am interested in created a FOXX application for Arango - but I want to use a collection I already have and will use in other ways. From the interface and the documentation it seems that I need to create a new collection. Is there some work…
Yehosef
  • 17,987
  • 7
  • 35
  • 56
0
votes
1 answer

Foxx import from another app in a periodic job throws error on Windows 7

I have installed ArangoDB 2.7.3 on Windows 7, 64 bit. I have an use case where one Foxx application A exposes some functionality in a repository that I want to use in another Foxx application B so that I do not have to duplicate that particular…
mihaela
  • 219
  • 3
  • 16
0
votes
2 answers

Update relation at runtime

I need help in order to update relation at runtime. I have this use case: I have created a graph with the following collections: - A (VertexCollection) - B (VertexCollection) - E (EdgeCollection) with relation( A -> B) at runtme, using Foxx app, I…
0
votes
1 answer

`foxx-manager update` fails inside corporate proxy environment

With docker 1.7.1, foxx-manager update gets error 500 when downloading master.zip from central repository. However, no error was occurred with docker 1.6.1. Did anyone encounter this problem? How can I specify https_proxy for arangosh? foxx-manager…
0
votes
1 answer

ArangoDB - Query doesn't work in FOXX but works in web interface

This query: FOR clinic IN exameFacil_clinics LET procedures_list = ( FOR procedure IN clinic.procedures FILTER LIKE(procedure.name, "%hemo%", true) COLLECT…
Pavarine
  • 637
  • 3
  • 15
  • 30
0
votes
1 answer

How to use a local git repository for a foxx application on ArangoDB

Foxx supports using a github repository for applications. How can we use a local git repo or any other vendor's repo?
Lewis Diamond
  • 23,164
  • 2
  • 24
  • 32
-1
votes
1 answer

Using foxx microservices vs pyarango

I want to set up an api that will query arabgodb. I am debating whether to set use foxx microservices or have a backend that will use pyarango to query the db. What are the pros and cons of both options?
-2
votes
1 answer

Foxx ArangoDB update data

any one who used foxx and arango I want to update a document in a collection Inside post end point. I'm new to arango I used collection.save(...) , to insert data I thought save() will update too if the given data containt the filed "_key" but When…
1 2 3
8
9