
# 点集最短路（Shortest Path of Vertex Sets）(1.0.0)
表1Parameter参数说明 
| 参数       | 是否必选 | 说明       | 类型      | 取值范围                                                                             | 默认值   |
|:---|:---|:---|:---|:---|:---|
| sources  | 是    | 起点ID集合   | String  | 标准csv格式，ID之间以英文逗号分隔，例如："Alice,Nana"。 个数不大于100000。 | -     |
| targets  | 是    | 终点ID集合   | String  | 标准csv格式，ID之间以英文逗号分隔，例如："Alice,Nana"。 个数不大于100000。   | -     |
| directed | 否    | 是否考虑边的方向 | Boolean | true或false                                                                       | false |
   
表2response_data参数说明 
| 参数     | 类型     | 说明                                                                                                                                      |
|:---|:---|:---|
| path   | List   | 最短路径，格式： \[vertexId,...\] 其中, vertexId：string类型 |
| source | String | 起点ID                                                                                                                                    |
| target | String | 终点ID                                                                                                                                    |
   
