query groupsWhereUsed ( $accountId:ID! $groupRefInput:GroupRefInput!) {
	groups ( accountId:$accountId ) {
		whereUsed ( input:$groupRefInput  )  {
			used
			usage {
				type
				field
			}
			invalidMemberTypes {
				type
				scope {
					type
					field
				}
			}
		}
	}	
}