GetGraphSchemaResponse¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
vertex_types |
|||
edge_types |
Example¶
from graphscope.flex.rest.models.get_graph_schema_response import GetGraphSchemaResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetGraphSchemaResponse from a JSON string
get_graph_schema_response_instance = GetGraphSchemaResponse.from_json(json)
# print the JSON string representation of the object
print(GetGraphSchemaResponse.to_json())
# convert the object into a dict
get_graph_schema_response_dict = get_graph_schema_response_instance.to_dict()
# create an instance of GetGraphSchemaResponse from a dict
get_graph_schema_response_from_dict = GetGraphSchemaResponse.from_dict(get_graph_schema_response_dict)