#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql" #import "~/graphql_shared/fragments/page_info.fragment.graphql" query getGroupVariables($after: String, $first: Int = 100, $fullPath: ID!) { group(fullPath: $fullPath) { id ciVariables(after: $after, first: $first) { pageInfo { ...PageInfo } nodes { ...BaseCiVariable ... on CiGroupVariable { environmentScope masked protected } } } } }