diff --git a/docs/build-your-software-catalog/sync-data-to-catalog/git/gitlab-v2/examples.md b/docs/build-your-software-catalog/sync-data-to-catalog/git/gitlab-v2/examples.md index c01a4ccde8..9c71a36586 100644 --- a/docs/build-your-software-catalog/sync-data-to-catalog/git/gitlab-v2/examples.md +++ b/docs/build-your-software-catalog/sync-data-to-catalog/git/gitlab-v2/examples.md @@ -351,6 +351,29 @@ By default, this selector is set to `false`, which means the integration will on ``` + + +You can also specify the `includeInheritedMembers` selector to control the inclusion of inherited and invited members in the member data. +By default, this parameter is set to `false`, and the integration will sync only direct members without inherited members and/or invited members. + +```yaml + - kind: group-with-members + selector: + query: 'true' + # highlight-next-line + includeInheritedMembers: true +``` + +```yaml + - kind: members + selector: + query: 'true' + # highlight-next-line + includeInheritedMembers: true +``` + + + :::tip Learn more