Skip to content

Allow to delete value streams with GraphQL

Felipe Cardozo requested to merge issue_410340-destroy_value_streams into master

What does this MR do and why?

Allow to delete value streams with GraphQL

Add GraphQL mutation to delete value streams.

part of #410340 (closed)

How to set up and validate locally

  1. Follow these steps to create a value stream using Graphql and take a note of its global id.
  2. Use the following mutation:
mutation deleteValueStream {
  valueStreamDestroy(input: { id: VALUE_STREAM_GLOBAL_ID  }) {
    valueStream {
      id
      name
    }
    errors
  }
} 

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Felipe Cardozo

Merge request reports