I am not able to get Key when making a query using Secondary Index
aql> show indexes;
+--------+------+-----------+-----------------------+-------+-----------+------+-----------+
| ns | bin | indextype | set | state | indexname | path | type |
+--------+------+-----------+-----------------------+-------+-----------+------+-----------+
| "test" | "rs" | "NONE" | "new_customers_table" | "RW" | "index1" | "rs" | "NUMERIC" |
+--------+------+-----------+-----------------------+-------+-----------+------+-----------+
aql> SELECT PK, rs from test.new_customers_table where rs between 200 and 210;'
+-----+-----+
| PK | rs |
+-----+-----+
| | 201 |
| | 201 |
| | 201 |
+-----+-----+
3 rows in set (0.002 secs)
OK
aql> SELECT PK, rs from test.new_customers_table where PK='abcd'
+-------------+-----+
| PK | rs |
+-------------+-----+
| "abcd" | 201 |
+-------------+-----+
1 row in set (0.001 secs)