I'm trying to manage supernodes in DSE Graph, and came across this blog post by Expero. It mentions support for partitioning/cutting vertexes in DSE Graph so that one supernode can be divided among two or more partitions (I think the blog was written based on DSE v. 5.1 or 5.0).
However, as of 6.0 it appears that "Partitioned vertex tables (PVT) are removed. (DSP-13676)" (according to the release notes).
It does look like the command to partition based on an edge is given for 6.0 docs:
schema.vertexLabel('author').partition().inE('created').add()
But then in the 6.7 docs I don't see support for the `partition` step.
Is there still support for cutting vertexes in 6.7 and/or 6.8? If so, how is it implemented and what is its behavior?