Hey Andrea, welcome to the ArangoDB community. Let me clear this up:
Geo queries, pagination etc. *are NOT deprecated*. What you found in the docs under *Deprecated* is about *Simple Queries*. Simple queries are an ideomatic way in arangosh to perform trivial queries. They are superseded by AQL queries, which you can also run in arangosh. AQL is a language on its own and way more powerful than Simple Queries could ever be. In fact, the (still supported) simple queries are translated internally to AQL and then the AQL query is optimized and run against the database in recent versions, because of better performance and less effort for us to maintain two separately programmed ways of access to the data. So while you can still use the simple queries interface, it is preferred to use AQL: - Pagination: https://docs.arangodb.com/3.1/AQL/Operations/Limit.html - Geo queries: https://docs.arangodb.com/3.1/AQL/Functions/Geo.html - Modification queries: https://docs.arangodb.com/3.1/AQL/DataQueries.html#data-modification-queries -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
