Method: Orchestrate::Client#delete_relation
- Defined in:
- lib/orchestrate/client.rb
permalink #delete_relation(collection, key, kind, to_collection, to_key) ⇒ Object
[View source]
397 398 399 400 |
# File 'lib/orchestrate/client.rb', line 397 def delete_relation(collection, key, kind, to_collection, to_key) path = [collection, key, 'relation', kind, to_collection, to_key] send_request :delete, path, { query: {purge: true} } end |