Expose active
parameter to Groups GQL API
Expose the active
parameter added in #525632 (closed) to the Groups GQL API
Implementation Guide
- In
app/graphql/resolvers/groups_resolver.rb
, addactive
as a new argument:
argument :active, GraphQL::Types::Boolean,
required: false,
description: 'Filter by groups that are not archived and not marked for deletion.'
- Run
bundle exec rake gitlab:graphql:compile_docs
to update the documentation. - Add the necessary tests in
groups_resolver_spec.rb
.
Edited by Shane Maglangit