-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Add DELETE /v1/networks/{networkId}/views/{viewId}/{objectType}/{visualProperty}/bypass #93
Comments
@dotasek Do you prefer tracking CyREST issues here or at Jira? |
Ah, I spoke too soon. Looks like this one is not the new one. Reopened. |
This is a difficult one, because of the data model. I think the correct way to handle this and other bulk updates is through the PATCH method. If you follow the issue thread for #88, Google has a method for updating which could work:
with the content either being a value to create or update:
or a null value to delete
I have to check if |
Should we try to implement PATCH in RCy3 and py4cytoscape per your tip above? Or is there more checking needed first, i.e., regarding |
Basically a generic version of the
network
delete method you have already:Replacing
network
with{objectType}
. I would like to use this to remove all bypasses for nodes and edges, for example. This is needed for basic operations likeunhideAll()
, which currently must DELETE for each node (very slow) or toggle the bypass value (which will continue to override any mappings).The text was updated successfully, but these errors were encountered: