Christian Himpe

Results 151 comments of Christian Himpe

The HTTP API can pass parameters into [queries](https://docs.arcadedb.com/#HTTP-ExecuteQuery) and [commands](https://docs.arcadedb.com/#HTTP-ExecuteCommand). Also, the [Java API](https://docs.arcadedb.com/#_java-reference) allows passing parameters. I guess, in both cases these parameterized queries can easily be encapsulated into...

I don't think I can solve your problem(s), but here are some remarks that may hopefully help: * Above, I meant, for example, using a function to wrap the statement...

To my understanding this is not how parameters work, at least in ArcadeDB. A parameter is placed into the parameterized query or command as its type. For example `SELECT FROM...

Some more details and a more reduced test case: * This happens only if the source `FROM ... ` **or** the target `TO ...` is an array of more than...

@robfrank I am testing the latest head with the fix. The OOM is gone, but it seems the `IF NOT EXISTS` is somewhat ignored. For example the following commands keep...

I will test again, but in the graph view it looked like each `CREATE EDGE` creates **new** edges, which should not happen for `IF NOT EXISTS`, if I am not...

Yes. I tested the changes manually in studio with the example above. Everytime I call `CREATE EDGE ... IF NOT EXISTS` it seems new edges are created as new edges...

IMHO the problem is not what is getting returned, but what is created: There should not be any new edges created if edges between the vertices already exists. Sorry if...