Hi all
I'm getting started and am having a hard time getting my head around some
things. Maybe someone can help me out...
I have two collections, 'Tags' and 'Objects', and I have an edge collection
'tagged'
Objects consists of 'car', 'airplane' and 'train'
Tags consists of 'land','air','public
It works!!!
Great community support.
Thank you!
On Wednesday, October 5, 2016 at 1:09:43 PM UTC-4, Allen Zhao wrote:
>
> Hi There,
>
> Want to figure a way to query a sub graph. E.g. I want to query from a
> startVertex with depth 2 and list all nodes and edges in a sub-graph json.
>
> I can u
Hey Allen,
maybe you can just return the traversal path? Example query:
FOR v, e, p IN 2..2 OUTBOUND "yourColl/startVertex" edgeCollection
RETURN p
[
{
"vertices": [
{"_id": "yourColl/startVertex", "x": 100, "y": 100},
{"_id": "yourColl/anotherVertex", "x": 200, "y": 300},
Hi There,
Want to figure a way to query a sub graph. E.g. I want to query from a
startVertex with depth 2 and list all nodes and edges in a sub-graph json.
I can use two queries to return nodes and edges and merge them into one. Is
there a way to do that in one query?
{
nodes: [
{
Hey Daniel,
did you make any progress? Still have questions?
Thanks, Simran
--
You received this message because you are subscribed to the Google Groups
"ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to arangodb+unsubscr...@googlegroups.com.
Geo indexes can only be used by calling geo functions that utilize them
(NEAR, WITHIN, WITHIN_RECTANGLE). These functions return documents in an
array, sorted by distance (closest distance first). It's currently not
possible to add additional filter criteria while still using the geo index,
als