Skip to content

Add projectSettingsUpdate mutation

Allen Cook requested to merge acook/440485_add_duo_features_enabled_graphql into master

What does this MR do and why?

Add mutations / graphql to interact with new duo_features_enabled setting.

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Screenshots or screen recordings

How to set up and validate locally

  1. Execute mutation on a test project
mutation test {
  projectSettingsUpdate(input:{fullPath: TESTPATH, duoFeaturesEnabled: true}) {
    errors
  }
}
  1. Query the result of that setting
query project {
  project(fullPath: TESTPATH) {
  	duoFeaturesEnabled    
  }
}

Resolves #440485 (closed)

Edited by Allen Cook

Merge request reports