We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
In python flows like g.plot(), it would be quite handy to be able to get the node_file_id, edge_file_id, and dataset_id
g.plot()
node_file_id
edge_file_id
dataset_id
This came up in some recent testing work. with the new remote endpoints, presumably, this will become even more natural.
Describe the solution you'd like
New Plottable fields _node_file_id, _edge_field_id, _dataset_id, _url
Plottable
_node_file_id
_edge_field_id
_dataset_id
_url
plot(inplace=True) => fields update to original Plottable; default on
plot(inplace=True)
g.plot(inplace=True) ... print(g._node_file_id, g._edge_file_id, g._dataset_id)
Convenient default for typical notebook plotting use
plot(return_plottable=true)
g2 = g1.plot(return_plottable=True) print(g._url, g._node_file_id, g._edge_file_id, g._dataset_id)
Convenient flag for typical app dev flows
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
In python flows like
g.plot()
, it would be quite handy to be able to get thenode_file_id
,edge_file_id
, anddataset_id
This came up in some recent testing work. with the new remote endpoints, presumably, this will become even more natural.
Describe the solution you'd like
New
Plottable
fields_node_file_id
,_edge_field_id
,_dataset_id
,_url
plot(inplace=True)
=> fields update to original Plottable; default onConvenient default for typical notebook plotting use
plot(return_plottable=true)
=> return Plottable, with new fields; default offConvenient flag for typical app dev flows
The text was updated successfully, but these errors were encountered: