public static GremlinQuery SkipTake(this GremlinQuery queryBase, GraphScope scope, int skip, int take) { return(queryBase.Range(scope, skip, skip + take)); }