skip to Main Content

On the page regarding compatibility (here)

It is mentioned that:-
The ordering of different Agtype, when using <, <=, >, >= from smallest value to largest value is:

1 Edge

2 Path

3 Map

4 Vertex

5 Edge

6 Array

7 String

8 Bool

9 Numeric, Integer, Float

10 NULL

Why is there Edge twice on number 1 and number 5?
Which one is correct?

2

Answers


  1. Almost certainly a typo in the documentation, it has some.
    Edge is only in the no1 spot not in no5

    Login or Signup to reply.
  2. This is probably a typo. However, from the Apache Age github repository and specifically this file, we can verify the correct order.

    Correct Order :
    The ordering of different Agtype, when using <, <=, >, >= from smallest value to largest value is:

    1. Edge

    2. Path

    3. Map

    4. Vertex

    5. Array

    6. String

    7. Bool

    8. Numeric, Integer, Float

    9. NULL

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search