Commit ae477f27 authored by Alex Kalderimis's avatar Alex Kalderimis

Merge branch '329585-set-devops-adoption-api-beta' into 'master'

[DevOps Adoption] Set GraphQL API as beta

See merge request gitlab-org/gitlab!61512
parents 39530b23 48545547
......@@ -85,7 +85,7 @@ Returns [`DesignManagement!`](#designmanagement).
### `Query.devopsAdoptionSegments`
Get configured DevOps adoption segments on the instance.
Get configured DevOps adoption segments on the instance. **BETA** This endpoint is subject to change without notice.
Returns [`DevopsAdoptionSegmentConnection`](#devopsadoptionsegmentconnection).
......@@ -742,6 +742,8 @@ Input type: `BoardListUpdateLimitMetricsInput`
### `Mutation.bulkFindOrCreateDevopsAdoptionSegments`
**BETA** This endpoint is subject to change without notice.
Input type: `BulkFindOrCreateDevopsAdoptionSegmentsInput`
#### Arguments
......@@ -1074,6 +1076,8 @@ Input type: `CreateCustomEmojiInput`
### `Mutation.createDevopsAdoptionSegment`
**BETA** This endpoint is subject to change without notice.
Input type: `CreateDevopsAdoptionSegmentInput`
#### Arguments
......@@ -1655,6 +1659,8 @@ Input type: `DeleteAnnotationInput`
### `Mutation.deleteDevopsAdoptionSegment`
**BETA** This endpoint is subject to change without notice.
Input type: `DeleteDevopsAdoptionSegmentInput`
#### Arguments
......
......@@ -59,7 +59,7 @@ module EE
field :devops_adoption_segments, ::Types::Admin::Analytics::DevopsAdoption::SegmentType.connection_type,
null: true,
description: 'Get configured DevOps adoption segments on the instance.',
description: 'Get configured DevOps adoption segments on the instance. **BETA** This endpoint is subject to change without notice.',
resolver: ::Resolvers::Admin::Analytics::DevopsAdoption::SegmentsResolver
field :current_license, ::Types::Admin::CloudLicenses::CurrentLicenseType,
......
......@@ -9,6 +9,8 @@ module Mutations
graphql_name 'BulkFindOrCreateDevopsAdoptionSegments'
description '**BETA** This endpoint is subject to change without notice.'
argument :namespace_ids, [::Types::GlobalIDType[::Namespace]],
required: true,
description: 'List of Namespace IDs for the segments.'
......
......@@ -9,6 +9,8 @@ module Mutations
graphql_name 'CreateDevopsAdoptionSegment'
description '**BETA** This endpoint is subject to change without notice.'
argument :namespace_id, ::Types::GlobalIDType[::Namespace],
required: true,
description: 'Namespace ID to set for the segment.'
......
......@@ -9,6 +9,8 @@ module Mutations
graphql_name 'DeleteDevopsAdoptionSegment'
description '**BETA** This endpoint is subject to change without notice.'
argument :id, [::Types::GlobalIDType[::Analytics::DevopsAdoption::Segment]],
required: true,
description: 'One or many IDs of the segments to delete.'
......
---
title: Make DevOps Adoption API as beta
merge_request: 61512
author:
type: other
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment