(graph_identifier: str, vertex_type: str)
| 56 | |
| 57 | |
| 58 | def unbind_vertex_datasource(graph_identifier: str, vertex_type: str) -> str: |
| 59 | context = get_current_context() |
| 60 | with graphscope.flex.rest.ApiClient( |
| 61 | graphscope.flex.rest.Configuration(context.coordinator_endpoint) |
| 62 | ) as api_client: |
| 63 | api_instance = graphscope.flex.rest.DataSourceApi(api_client) |
| 64 | return api_instance.unbind_vertex_datasource(graph_identifier, vertex_type) |
| 65 | |
| 66 | |
| 67 | def unbind_edge_datasource( |