You can definitely use these functions in apache-age.
Let's take an example of rank() function, A rank() function is used to assign a rank to each row within a partition based on a specified ordering.
SELECT id, name, score, rank() OVER (ORDER BY score DESC) AS ranking
FROM your_table;
The rank() function is applied over the score column, and the result is returned as the ranking column in the output. The ORDER BY clause specifies the column by which the ranking is determined.
The result will include the id, name, score, and ranking columns, where the ranking column represents the rank of each row based on the score column.