MCPcopy Create free account
hub / github.com/alibaba/GraphScope / unbind_edge_datasource

Function unbind_edge_datasource

python/graphscope/gsctl/impl/datasource.py:67–80  ·  view source on GitHub ↗
(
    graph_identifier: str,
    vertex_type: str,
    source_vertex_type: str,
    destination_vertex_type: str,
)

Source from the content-addressed store, hash-verified

65
66
67def 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 )

Callers 3

datasourceFunction · 0.90
datasourceFunction · 0.90
test_bulk_loadingMethod · 0.90

Calls 3

get_current_contextFunction · 0.90
ConfigurationMethod · 0.45

Tested by 1

test_bulk_loadingMethod · 0.72