在Azure Cosmos中分页或使用Skip

问题描述 投票:1回答:1

有没有人能够确定Azure Cosmos中相当于Gremlin Skip的人?它没有在Microsoft's documentation上列出,我认为它已经过时了。我确实尝试过像g.V().hasLabel('the_label').has('the_property', eq('the_value')).skip(some_number)这样的查询,并且它出错了Unable to find any method 'skip'

azure-cosmosdb gremlin
1个回答
1
投票

从Apache TinkerPop文档中的链接:

skip() - 步骤类似于range() - 步骤保存,将较高端范围设置为-1。

这些例子:

gremlin> g.V().values('age').order().skip(2)
==>32
==>35
gremlin> g.V().values('age').order().range(2, -1)
==>32
==>35
© www.soinside.com 2019 - 2024. All rights reserved.