computer/computer-algorithm/src/main/java/org/apache/hugegraph/computer/algorithm/path/rings/RingsDetectionOutput.java [30:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void prepareSchema() {
        this.client().schema().propertyKey(this.name())
                     .asText()
                     .writeType(this.writeType())
                     .valueList()
                     .ifNotExist()
                     .create();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



computer/computer-algorithm/src/main/java/org/apache/hugegraph/computer/algorithm/path/shortest/SingleSourceShortestPathOutput.java [32:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void prepareSchema() {
        this.client().schema().propertyKey(this.name())
            .asText()
            .writeType(this.writeType())
            .valueList()
            .ifNotExist()
            .create();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



computer/computer-algorithm/src/main/java/org/apache/hugegraph/computer/algorithm/sampling/RandomWalkOutput.java [30:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void prepareSchema() {
        this.client().schema().propertyKey(this.name())
            .asText()
            .writeType(this.writeType())
            .valueList()
            .ifNotExist()
            .create();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



