(
graph_identifier: str,
vertex_type: str,
source_vertex_type: str,
destination_vertex_type: str,
)
| 65 | |
| 66 | |
| 67 | def unbind_edge_datasource( |
| 68 | graph_identifier: str, |
| 69 | vertex_type: str, |
| 70 | source_vertex_type: str, |
| 71 | destination_vertex_type: str, |
| 72 | ) -> str: |
| 73 | context = get_current_context() |
| 74 | with graphscope.flex.rest.ApiClient( |
| 75 | graphscope.flex.rest.Configuration(context.coordinator_endpoint) |
| 76 | ) as api_client: |
| 77 | api_instance = graphscope.flex.rest.DataSourceApi(api_client) |
| 78 | return api_instance.unbind_edge_datasource( |
| 79 | graph_identifier, vertex_type, source_vertex_type, destination_vertex_type |
| 80 | ) |