diff --git a/backend/infrahub/graphql/manager.py b/backend/infrahub/graphql/manager.py index cfb3c2879b..e688d8a6d5 100644 --- a/backend/infrahub/graphql/manager.py +++ b/backend/infrahub/graphql/manager.py @@ -21,6 +21,7 @@ from infrahub.graphql.mutations.attribute import BaseAttributeCreate, BaseAttributeUpdate from infrahub.graphql.mutations.graphql_query import InfrahubGraphQLQueryMutation from infrahub.graphql.mutations.profile import InfrahubProfileMutation +from infrahub.graphql.types.scalars import NonNegativeInt from infrahub.types import ATTRIBUTE_TYPES, InfrahubDataType, get_attribute_type from .directives import DIRECTIVES @@ -912,7 +913,7 @@ def generate_filters( dict: A Dictionary containing all the filters with their name as the key and their Type as value """ - filters: dict[str, Any] = {"offset": graphene.Int(), "limit": graphene.Int(), "order": OrderInput()} + filters: dict[str, Any] = {"offset": NonNegativeInt(), "limit": NonNegativeInt(), "order": OrderInput()} default_filters: list[str] = list(filters.keys()) filters["ids"] = graphene.List(graphene.ID) diff --git a/backend/infrahub/graphql/queries/account.py b/backend/infrahub/graphql/queries/account.py index e133e9c3f9..6363503958 100644 --- a/backend/infrahub/graphql/queries/account.py +++ b/backend/infrahub/graphql/queries/account.py @@ -8,6 +8,7 @@ from infrahub.core.protocols import InternalAccountToken from infrahub.exceptions import PermissionDeniedError from infrahub.graphql.field_extractor import extract_graphql_fields +from infrahub.graphql.types.scalars import NonNegativeInt if TYPE_CHECKING: from graphql import GraphQLResolveInfo @@ -63,8 +64,8 @@ async def resolve_account_tokens( AccountToken = Field( AccountTokenEdges, - limit=Int(required=False), - offset=Int(required=False), + limit=NonNegativeInt(required=False), + offset=NonNegativeInt(required=False), resolver=resolve_account_tokens, required=True, ) diff --git a/backend/infrahub/graphql/queries/branch.py b/backend/infrahub/graphql/queries/branch.py index 882ec91985..5f7e8c8969 100644 --- a/backend/infrahub/graphql/queries/branch.py +++ b/backend/infrahub/graphql/queries/branch.py @@ -2,11 +2,12 @@ from typing import TYPE_CHECKING, Any -from graphene import ID, Field, Int, List, NonNull, String +from graphene import ID, Field, List, NonNull, String from infrahub.exceptions import ValidationError from infrahub.graphql.field_extractor import extract_graphql_fields from infrahub.graphql.types import BranchType, InfrahubBranch, InfrahubBranchType +from infrahub.graphql.types.scalars import NonNegativeInt if TYPE_CHECKING: from graphql import GraphQLResolveInfo @@ -56,8 +57,8 @@ async def infrahub_branch_resolver( InfrahubBranchQueryList = Field( InfrahubBranchType, - offset=Int(), - limit=Int(), + offset=NonNegativeInt(), + limit=NonNegativeInt(), description="Retrieve paginated information about active branches.", resolver=infrahub_branch_resolver, required=True, diff --git a/backend/infrahub/graphql/queries/diff/tree.py b/backend/infrahub/graphql/queries/diff/tree.py index 8689f10ab8..c9ef06a1c1 100644 --- a/backend/infrahub/graphql/queries/diff/tree.py +++ b/backend/infrahub/graphql/queries/diff/tree.py @@ -17,6 +17,7 @@ from infrahub.dependencies.registry import get_component_registry from infrahub.graphql.enums import ConflictSelection as GraphQLConflictSelection from infrahub.graphql.field_extractor import extract_graphql_fields +from infrahub.graphql.types.scalars import NonNegativeInt if TYPE_CHECKING: from datetime import datetime @@ -586,8 +587,8 @@ class DiffTreeQueryFilters(InputObjectType): root_node_uuids=Argument(List(String), deprecation_reason="replaced by filters"), include_parents=Boolean(), filters=DiffTreeQueryFilters(), - limit=Int(), - offset=Int(), + limit=NonNegativeInt(), + offset=NonNegativeInt(), resolver=DiffTreeResolver().resolve, required=False, ) diff --git a/backend/infrahub/graphql/queries/event.py b/backend/infrahub/graphql/queries/event.py index e2e9008da5..efa6da4bbc 100644 --- a/backend/infrahub/graphql/queries/event.py +++ b/backend/infrahub/graphql/queries/event.py @@ -8,6 +8,7 @@ from infrahub.exceptions import ValidationError from infrahub.graphql.field_extractor import extract_graphql_fields from infrahub.graphql.types.event import EventNodes, EventTypeFilter +from infrahub.graphql.types.scalars import NonNegativeInt from infrahub.task_manager.event import PrefectEvent from infrahub.task_manager.models import InfrahubEventFilter @@ -95,8 +96,8 @@ async def query( Event = Field( Events, - limit=Int(required=False), - offset=Int(required=False), + limit=NonNegativeInt(required=False), + offset=NonNegativeInt(required=False), level=Int(required=False), has_children=Boolean(required=False, description="Filter events based on if they can have children or not"), event_type=List(NonNull(String), description="Filter events that match a specific type"), diff --git a/backend/infrahub/graphql/queries/relationship.py b/backend/infrahub/graphql/queries/relationship.py index d4b4598052..2f905292c9 100644 --- a/backend/infrahub/graphql/queries/relationship.py +++ b/backend/infrahub/graphql/queries/relationship.py @@ -7,6 +7,7 @@ from infrahub.core.query.relationship import RelationshipGetByIdentifierQuery from infrahub.graphql.field_extractor import extract_graphql_fields from infrahub.graphql.types import RelationshipNode +from infrahub.graphql.types.scalars import NonNegativeInt if TYPE_CHECKING: from graphql import GraphQLResolveInfo @@ -76,8 +77,8 @@ async def resolve( Relationships, ids=List(NonNull(String), required=True), excluded_namespaces=List(String), - limit=Int(required=False), - offset=Int(required=False), + limit=NonNegativeInt(required=False), + offset=NonNegativeInt(required=False), resolver=Relationships.resolve, required=True, ) diff --git a/backend/infrahub/graphql/queries/resource_manager.py b/backend/infrahub/graphql/queries/resource_manager.py index af3a69d5a2..3fbb43a1dc 100644 --- a/backend/infrahub/graphql/queries/resource_manager.py +++ b/backend/infrahub/graphql/queries/resource_manager.py @@ -2,7 +2,7 @@ from typing import TYPE_CHECKING, Any -from graphene import BigInt, Field, Float, Int, List, NonNull, ObjectType, String +from graphene import BigInt, Field, Float, List, NonNull, ObjectType, String from infrahub.core import registry from infrahub.core.constants import InfrahubKind @@ -16,6 +16,7 @@ ) from infrahub.exceptions import NodeNotFoundError, SchemaNotFoundError, ValidationError from infrahub.graphql.field_extractor import extract_graphql_fields +from infrahub.graphql.types.scalars import NonNegativeInt from infrahub.pools.number import NumberUtilizationGetter if TYPE_CHECKING: @@ -340,8 +341,8 @@ async def resolve_number_pool_utilization( PoolAllocated, pool_id=String(required=True), resource_id=String(required=True), - limit=Int(required=False), - offset=Int(required=False), + limit=NonNegativeInt(required=False), + offset=NonNegativeInt(required=False), resolver=PoolAllocated.resolve, required=True, ) diff --git a/backend/infrahub/graphql/queries/search.py b/backend/infrahub/graphql/queries/search.py index 1fad7d7cf2..a45fa20cd4 100644 --- a/backend/infrahub/graphql/queries/search.py +++ b/backend/infrahub/graphql/queries/search.py @@ -9,6 +9,7 @@ from infrahub.core.constants import InfrahubKind from infrahub.core.manager import NodeManager from infrahub.graphql.field_extractor import extract_graphql_fields +from infrahub.graphql.types.scalars import NonNegativeInt if TYPE_CHECKING: from graphql import GraphQLResolveInfo @@ -146,7 +147,7 @@ async def search_resolver( InfrahubSearchAnywhere = Field( NodeEdges, q=String(required=True), - limit=Int(required=False), + limit=NonNegativeInt(required=False), partial_match=Boolean(required=False), resolver=search_resolver, required=True, diff --git a/backend/infrahub/graphql/queries/task.py b/backend/infrahub/graphql/queries/task.py index 562123685c..fbf0a58f4f 100644 --- a/backend/infrahub/graphql/queries/task.py +++ b/backend/infrahub/graphql/queries/task.py @@ -6,6 +6,7 @@ from prefect.client.schemas.objects import StateType from infrahub.graphql.field_extractor import extract_graphql_fields +from infrahub.graphql.types.scalars import NonNegativeInt from infrahub.graphql.types.task import TaskNodes, TaskState from infrahub.task_manager.task import PrefectTask from infrahub.workflows.constants import WorkflowTag @@ -105,16 +106,16 @@ async def query( Task = Field( Tasks, - limit=Int(required=False), - offset=Int(required=False), + limit=NonNegativeInt(required=False), + offset=NonNegativeInt(required=False), related_node__ids=List(String), branch=String(required=False), state=List(TaskState), workflow=List(String), ids=List(String), q=String(required=False), - log_limit=Int(required=False), - log_offset=Int(required=False), + log_limit=NonNegativeInt(required=False), + log_offset=NonNegativeInt(required=False), resolver=Tasks.resolve, required=True, ) diff --git a/backend/infrahub/graphql/types/scalars.py b/backend/infrahub/graphql/types/scalars.py new file mode 100644 index 0000000000..e5ad9b053f --- /dev/null +++ b/backend/infrahub/graphql/types/scalars.py @@ -0,0 +1,92 @@ +from typing import Any + +from graphene import Scalar +from graphql import language + +from infrahub.exceptions import ValidationError + + +class NonNegativeInt(Scalar): + """A GraphQL scalar type that validates non-negative integer values. + + This scalar ensures that values are integers >= 0. It accepts None (null in GraphQL) + and rejects negative integers by raising ValidationError. + """ + + @staticmethod + def serialize(value: int | None) -> int | None: + """Serialize the value for output. + + Args: + value: The value to serialize. + + Returns: + The validated non-negative integer or None. + + Raises: + ValidationError: If the value is negative. + """ + + return NonNegativeInt._validate(value) + + @staticmethod + def parse_value(value: Any) -> int | None: + """Parse a value from variables. + + Args: + value: The input value from GraphQL variables. + + Returns: + The validated non-negative integer or None. + + Raises: + ValidationError: If the value is negative or cannot be converted to int. + """ + + return NonNegativeInt._validate(value) + + @staticmethod + def parse_literal(node: language.ast.ValueNode) -> int | None: + """Parse a value from an AST literal node. + + Args: + node: The AST node representing the literal value. + + Returns: + The validated non-negative integer or None. + + Raises: + ValidationError: If the node is not an IntValueNode or the value is negative. + """ + + if isinstance(node, language.ast.IntValueNode): + return NonNegativeInt._validate(int(node.value)) + + raise ValidationError("Value must be a non-negative integer") + + @staticmethod + def _validate(value: Any) -> int | None: + """Validate that the value is a non-negative integer. + + Args: + value: The value to validate. + + Returns: + The validated non-negative integer or None if the input is None. + + Raises: + ValidationError: If the value is negative or cannot be converted to int. + """ + + if value is None: + return None + + try: + value = int(value) + except (ValueError, TypeError) as exc: + raise ValidationError("Value must be a non-negative integer") from exc + + if value < 0: + raise ValidationError("Value must be a non-negative integer") + + return value diff --git a/backend/tests/unit/graphql/queries/test_branch.py b/backend/tests/unit/graphql/queries/test_branch.py index 92580bfe55..3c760ff57e 100644 --- a/backend/tests/unit/graphql/queries/test_branch.py +++ b/backend/tests/unit/graphql/queries/test_branch.py @@ -276,7 +276,7 @@ async def test_paginated_branch_query__returns_error_on_invalid_offset_or_limit( variable_values={}, ) assert len(all_branches.errors) - assert all_branches.errors[0].message == "offset must be >= 0" + assert "non-negative integer" in all_branches.errors[0].message.lower() query = """ query { @@ -300,4 +300,4 @@ async def test_paginated_branch_query__returns_error_on_invalid_offset_or_limit( variable_values={}, ) assert len(all_branches.errors) - assert all_branches.errors[0].message == "limit must be >= 1" + assert "non-negative integer" in all_branches.errors[0].message.lower() diff --git a/backend/tests/unit/graphql/queries/test_event.py b/backend/tests/unit/graphql/queries/test_event.py index 194641e46e..773dfdb66f 100644 --- a/backend/tests/unit/graphql/queries/test_event.py +++ b/backend/tests/unit/graphql/queries/test_event.py @@ -25,8 +25,8 @@ $branch: [String!], $account: [String!], $parent__ids: [String!], - $limit: Int, - $offset: Int + $limit: NonNegativeInt, + $offset: NonNegativeInt $level: Int $has_children: Boolean $event_type: [String!] diff --git a/backend/tests/unit/graphql/queries/test_ipam.py b/backend/tests/unit/graphql/queries/test_ipam.py index a0ddc2c51d..a8e867280e 100644 --- a/backend/tests/unit/graphql/queries/test_ipam.py +++ b/backend/tests/unit/graphql/queries/test_ipam.py @@ -580,7 +580,7 @@ async def test_ip_address_include_available_filtered_by_kind( default_branch.update_schema_hash() gql_params = await prepare_graphql_params(db=db, branch=default_branch) query = """ - query($prefix: ID!, $limit: Int!, $kinds: [String!]) { + query($prefix: ID!, $limit: NonNegativeInt!, $kinds: [String!]) { BuiltinIPAddress(ip_prefix__ids: [$prefix], include_available: true, kinds: $kinds, limit: $limit) { edges { node { @@ -742,7 +742,7 @@ async def test_ipaddress_include_available_pagination( gql_params = await prepare_graphql_params(db=db, branch=default_branch) query = """ - query($prefix: ID!, $limit: Int!, $offset: Int!) { + query($prefix: ID!, $limit: NonNegativeInt!, $offset: NonNegativeInt!) { BuiltinIPAddress(ip_prefix__ids: [$prefix], include_available: true, limit: $limit, offset: $offset) { edges { node { @@ -1051,7 +1051,7 @@ async def test_ipprefix_include_available_pagination( gql_params = await prepare_graphql_params(db=db, branch=default_branch) query = """ - query($prefix: ID!, $limit: Int!, $offset: Int!) { + query($prefix: ID!, $limit: NonNegativeInt!, $offset: NonNegativeInt!) { BuiltinIPPrefix(parent__ids: [$prefix], include_available: true, limit: $limit, offset: $offset) { edges { node { diff --git a/backend/tests/unit/graphql/test_query.py b/backend/tests/unit/graphql/test_query.py index 7c5fc986bf..4dc48adedd 100644 --- a/backend/tests/unit/graphql/test_query.py +++ b/backend/tests/unit/graphql/test_query.py @@ -83,3 +83,103 @@ async def test_execute_missing_query(db: InfrahubDatabase, default_branch: Branc await execute_query(name="query02", db=db, branch=default_branch) assert "Unable to find the CoreGraphQLQuery" in str(exc.value) + + +async def test_builtin_tag_rejects_negative_limit( + db: InfrahubDatabase, + default_branch: Branch, + register_core_models_schema, +) -> None: + """Test that BuiltinTag query rejects negative limit values.""" + default_branch.update_schema_hash() + gql_params = await prepare_graphql_params(db=db, branch=default_branch) + + result = await graphql( + schema=gql_params.schema, + source=""" + query { + BuiltinTag(limit: -1) { count } + } + """, + context_value=gql_params.context, + ) + + assert result.data is None + assert result.errors + assert "non-negative integer" in result.errors[0].message + assert result.errors[0].path is None + + +async def test_builtin_tag_rejects_negative_offset( + db: InfrahubDatabase, + default_branch: Branch, + register_core_models_schema, +) -> None: + """Test that BuiltinTag query rejects negative offset values.""" + default_branch.update_schema_hash() + gql_params = await prepare_graphql_params(db=db, branch=default_branch) + + result = await graphql( + schema=gql_params.schema, + source=""" + query { + BuiltinTag(offset: -1) { count } + } + """, + context_value=gql_params.context, + ) + + assert result.data is None + assert result.errors + assert "non-negative integer" in result.errors[0].message + assert result.errors[0].path is None + + +async def test_builtin_tag_rejects_unknown_limit( + db: InfrahubDatabase, + default_branch: Branch, + register_core_models_schema, +) -> None: + """Test that BuiltinTag query rejects unknown limit values.""" + default_branch.update_schema_hash() + gql_params = await prepare_graphql_params(db=db, branch=default_branch) + + result = await graphql( + schema=gql_params.schema, + source=""" + query { + BuiltinTag(limit: "") { count } + } + """, + context_value=gql_params.context, + ) + + assert result.data is None + assert result.errors + assert "non-negative integer" in result.errors[0].message + assert result.errors[0].path is None + + +async def test_builtin_tag_rejects_unknown_offset( + db: InfrahubDatabase, + default_branch: Branch, + register_core_models_schema, +) -> None: + """Test that BuiltinTag query rejects unknown offset values.""" + default_branch.update_schema_hash() + gql_params = await prepare_graphql_params(db=db, branch=default_branch) + + result = await graphql( + schema=gql_params.schema, + source=""" + query { + BuiltinTag(offset: "") { count } + } + """, + context_value=gql_params.context, + ) + + assert result.data is None + assert result.errors + assert "non-negative integer" in result.errors[0].message + assert result.errors[0].path is None diff --git a/changelog/7474.fixed.md b/changelog/7474.fixed.md new file mode 100644 index 0000000000..52b3724953 --- /dev/null +++ b/changelog/7474.fixed.md @@ -0,0 +1,9 @@ +New Feature +- Added `NonNegativeInt` scalar to enforce non-negative integer validation for GraphQL query inputs. + +Improvements +- Pagination arguments (`limit`, `offset`, and related params) now validate as non-negative integers, improving error clarity and preventing invalid requests. + +Tests +- Added unit tests to ensure negative or invalid pagination inputs are rejected with appropriate "non-negative integer" errors. + diff --git a/schema/schema.graphql b/schema/schema.graphql index 2a32ad0945..0686b5278d 100644 --- a/schema/schema.graphql +++ b/schema/schema.graphql @@ -355,9 +355,9 @@ interface BuiltinIPAddress { id: String ip_namespace: NestedEdgedBuiltinIPNamespace! ip_prefix: NestedEdgedBuiltinIPPrefix! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - profiles(ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + profiles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """IPv4 or IPv6 address""" @@ -385,12 +385,12 @@ interface BuiltinIPNamespace { hfid: [String!] """Unique identifier""" id: String - ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedBuiltinIPAddress! - ip_prefixes(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinIPAddress! + ip_prefixes(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute - profiles(ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + profiles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A generic container for IP prefixes and IP addresses""" @@ -413,10 +413,10 @@ input BuiltinIPNamespaceUpdateInput { """IPv4 or IPv6 prefix also referred as network""" interface BuiltinIPPrefix { - ancestors(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + ancestors(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! broadcast_address: TextAttribute - children(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! - descendants(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + children(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + descendants(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! description: TextAttribute display_label: String """Human friendly identifier""" @@ -424,20 +424,20 @@ interface BuiltinIPPrefix { hostmask: TextAttribute """Unique identifier""" id: String - ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedBuiltinIPAddress! + ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinIPAddress! ip_namespace: NestedEdgedBuiltinIPNamespace! """All IP addresses within this prefix are considered usable""" is_pool: CheckboxAttribute is_top_level: CheckboxAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! member_type: Dropdown netmask: TextAttribute network_address: TextAttribute parent: NestedEdgedBuiltinIPPrefix! prefix: IPNetwork - profiles(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! - resource_pool(default_address_type__is_protected: Boolean, default_address_type__is_visible: Boolean, default_address_type__owner__id: ID, default_address_type__source__id: ID, default_address_type__value: String, default_address_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreIPAddressPool! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + profiles(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! + resource_pool(default_address_type__is_protected: Boolean, default_address_type__is_visible: Boolean, default_address_type__owner__id: ID, default_address_type__source__id: ID, default_address_type__value: String, default_address_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreIPAddressPool! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! utilization: NumberAttribute } @@ -473,11 +473,11 @@ type BuiltinTag implements CoreNode { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute - profiles(ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + profiles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """ @@ -637,11 +637,11 @@ type CoreAccount implements CoreGenericAccount & CoreNode & LineageOwner & Linea """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute password: TextAttribute status: Dropdown - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """User Account for Infrahub""" @@ -670,9 +670,9 @@ type CoreAccountDelete { """A group of users to manage common permissions""" type CoreAccountGroup implements CoreGroup & LineageOwner & LineageSource { _updated_at: DateTime - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! description: TextAttribute display_label: String group_type: TextAttribute @@ -681,11 +681,11 @@ type CoreAccountGroup implements CoreGroup & LineageOwner & LineageSource { """Unique identifier""" id: String! label: TextAttribute - members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! name: TextAttribute parent: NestedEdgedCoreGroup! - roles(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreAccountRole! - subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + roles(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreAccountRole! + subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! } """A group of users to manage common permissions""" @@ -756,16 +756,16 @@ input CoreAccountGroupUpsertInput { type CoreAccountRole implements CoreNode { _updated_at: DateTime display_label: String - groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreAccountGroup! + groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreAccountGroup! """Human friendly identifier""" hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute - permissions(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreBasePermission! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + permissions(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreBasePermission! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A role defines a set of permissions to grant to a group of accounts""" @@ -867,11 +867,11 @@ interface CoreAction { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """Short descriptive name""" name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - triggers(active__is_protected: Boolean, active__is_visible: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreTriggerRule! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + triggers(active__is_protected: Boolean, active__is_visible: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreTriggerRule! } """An action that can be executed by a trigger""" @@ -907,7 +907,7 @@ type CoreArtifact implements CoreNode & CoreTaskTarget { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute object: NestedEdgedCoreArtifactTarget! @@ -917,7 +917,7 @@ type CoreArtifact implements CoreNode & CoreTaskTarget { status: TextAttribute """ID of the file in the object store""" storage_id: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A check related to an artifact""" @@ -940,14 +940,14 @@ type CoreArtifactCheck implements CoreCheck & CoreNode { label: TextAttribute """None""" line_number: NumberAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! message: TextAttribute name: TextAttribute origin: TextAttribute severity: TextAttribute """None""" storage_id: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! validator: NestedEdgedCoreValidator! } @@ -1069,12 +1069,12 @@ type CoreArtifactDefinition implements CoreNode & CoreTaskTarget { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute """None (required)""" parameters: JSONAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! targets: NestedEdgedCoreGroup! transformation: NestedEdgedCoreTransformation! } @@ -1145,14 +1145,14 @@ type CoreArtifactDelete { """Extend a node to be associated with artifacts""" interface CoreArtifactTarget { - artifacts(checksum__is_protected: Boolean, checksum__is_visible: Boolean, checksum__owner__id: ID, checksum__source__id: ID, checksum__value: String, checksum__values: [String], content_type__is_protected: Boolean, content_type__is_visible: Boolean, content_type__owner__id: ID, content_type__source__id: ID, content_type__value: String, content_type__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String]): NestedPaginatedCoreArtifact! + artifacts(checksum__is_protected: Boolean, checksum__is_visible: Boolean, checksum__owner__id: ID, checksum__source__id: ID, checksum__value: String, checksum__values: [String], content_type__is_protected: Boolean, content_type__is_visible: Boolean, content_type__owner__id: ID, content_type__source__id: ID, content_type__value: String, content_type__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String]): NestedPaginatedCoreArtifact! display_label: String """Human friendly identifier""" hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Extend a node to be associated with artifacts""" @@ -1175,7 +1175,7 @@ type CoreArtifactThread implements CoreNode & CoreThread { """None""" artifact_id: TextAttribute change: NestedEdgedCoreProposedChange! - comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! + comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! created_at: TextAttribute created_by: NestedEdgedCoreGenericAccount! display_label: String @@ -1186,11 +1186,11 @@ type CoreArtifactThread implements CoreNode & CoreThread { label: TextAttribute """None""" line_number: NumberAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! resolved: CheckboxAttribute """None""" storage_id: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A thread related to an artifact on a proposed change""" @@ -1308,7 +1308,7 @@ input CoreArtifactUpsertInput { """A validator related to the artifacts""" type CoreArtifactValidator implements CoreNode & CoreValidator { _updated_at: DateTime - checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! + checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! completed_at: TextAttribute conclusion: TextAttribute definition: NestedEdgedCoreArtifactDefinition! @@ -1318,11 +1318,11 @@ type CoreArtifactValidator implements CoreNode & CoreValidator { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! proposed_change: NestedEdgedCoreProposedChange! started_at: TextAttribute state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A validator related to the artifacts""" @@ -1401,9 +1401,9 @@ interface CoreBasePermission { """Unique identifier""" id: String identifier: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - roles(ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreAccountRole! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + roles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreAccountRole! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A permission grants right to an account""" @@ -1432,8 +1432,8 @@ type CoreChangeComment implements CoreComment & CoreNode { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! text: TextAttribute } @@ -1496,7 +1496,7 @@ input CoreChangeCommentUpsertInput { type CoreChangeThread implements CoreNode & CoreThread { _updated_at: DateTime change: NestedEdgedCoreProposedChange! - comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! + comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! created_at: TextAttribute created_by: NestedEdgedCoreGenericAccount! display_label: String @@ -1505,9 +1505,9 @@ type CoreChangeThread implements CoreNode & CoreThread { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! resolved: CheckboxAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A thread on proposed change""" @@ -1581,12 +1581,12 @@ interface CoreCheck { id: String kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! message: TextAttribute name: TextAttribute origin: TextAttribute severity: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! validator: NestedEdgedCoreValidator! } @@ -1603,15 +1603,15 @@ type CoreCheckDefinition implements CoreNode & CoreTaskTarget { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute """None""" parameters: JSONAttribute query: NestedEdgedCoreGraphQLQuery! repository: NestedEdgedCoreGenericRepository! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! targets: NestedEdgedCoreGroup! """None""" timeout: NumberAttribute @@ -1716,8 +1716,8 @@ interface CoreComment { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! text: TextAttribute } @@ -1746,9 +1746,9 @@ interface CoreCredential { """Unique identifier""" id: String label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A credential that could be referenced to access external services.""" @@ -1779,13 +1779,13 @@ type CoreCustomWebhook implements CoreNode & CoreTaskTarget & CoreWebhook { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute """Only send node mutation events for nodes of this kind""" node_kind: TextAttribute """None""" shared_key: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! transformation: NestedEdgedCoreTransformPython! url: TextAttribute validate_certificates: CheckboxAttribute @@ -1885,12 +1885,12 @@ type CoreDataCheck implements CoreCheck & CoreNode { keep_branch: TextAttribute kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! message: TextAttribute name: TextAttribute origin: TextAttribute severity: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! validator: NestedEdgedCoreValidator! } @@ -1976,7 +1976,7 @@ input CoreDataCheckUpsertInput { """A check to validate the data integrity between two branches""" type CoreDataValidator implements CoreNode & CoreValidator { _updated_at: DateTime - checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! + checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! completed_at: TextAttribute conclusion: TextAttribute display_label: String @@ -1985,11 +1985,11 @@ type CoreDataValidator implements CoreNode & CoreValidator { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! proposed_change: NestedEdgedCoreProposedChange! started_at: TextAttribute state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A check to validate the data integrity between two branches""" @@ -2072,12 +2072,12 @@ type CoreFileCheck implements CoreCheck & CoreNode { id: String! kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! message: TextAttribute name: TextAttribute origin: TextAttribute severity: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! validator: NestedEdgedCoreValidator! } @@ -2161,7 +2161,7 @@ input CoreFileCheckUpsertInput { type CoreFileThread implements CoreNode & CoreThread { _updated_at: DateTime change: NestedEdgedCoreProposedChange! - comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! + comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! """None""" commit: TextAttribute created_at: TextAttribute @@ -2176,10 +2176,10 @@ type CoreFileThread implements CoreNode & CoreThread { label: TextAttribute """None""" line_number: NumberAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! repository: NestedEdgedCoreRepository! resolved: CheckboxAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A thread related to a file on a proposed change""" @@ -2266,11 +2266,11 @@ type CoreGeneratorAction implements CoreAction & CoreNode { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """Short descriptive name""" name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - triggers(active__is_protected: Boolean, active__is_visible: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreTriggerRule! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + triggers(active__is_protected: Boolean, active__is_visible: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreTriggerRule! } """An action that runs a generator definition once triggered""" @@ -2349,9 +2349,9 @@ input CoreGeneratorActionUpsertInput { """Group of nodes that are created by a generator. (Aware)""" type CoreGeneratorAwareGroup implements CoreGroup { _updated_at: DateTime - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! description: TextAttribute display_label: String group_type: TextAttribute @@ -2360,10 +2360,10 @@ type CoreGeneratorAwareGroup implements CoreGroup { """Unique identifier""" id: String! label: TextAttribute - members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! name: TextAttribute parent: NestedEdgedCoreGroup! - subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! } """Group of nodes that are created by a generator. (Aware)""" @@ -2441,12 +2441,12 @@ type CoreGeneratorCheck implements CoreCheck & CoreNode { instance: TextAttribute kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! message: TextAttribute name: TextAttribute origin: TextAttribute severity: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! validator: NestedEdgedCoreValidator! } @@ -2542,14 +2542,14 @@ type CoreGeneratorDefinition implements CoreNode & CoreTaskTarget { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute """None (required)""" parameters: JSONAttribute query: NestedEdgedCoreGraphQLQuery! repository: NestedEdgedCoreGenericRepository! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! targets: NestedEdgedCoreGroup! } @@ -2628,9 +2628,9 @@ input CoreGeneratorDefinitionUpsertInput { """Group of nodes that are created by a generator. (local)""" type CoreGeneratorGroup implements CoreGroup { _updated_at: DateTime - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! description: TextAttribute display_label: String group_type: TextAttribute @@ -2639,10 +2639,10 @@ type CoreGeneratorGroup implements CoreGroup { """Unique identifier""" id: String! label: TextAttribute - members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! name: TextAttribute parent: NestedEdgedCoreGroup! - subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! } """Group of nodes that are created by a generator. (local)""" @@ -2714,13 +2714,13 @@ type CoreGeneratorInstance implements CoreNode & CoreTaskTarget { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute object: NestedEdgedCoreNode! """None (required)""" status: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } type CoreGeneratorInstanceCreate { @@ -2777,7 +2777,7 @@ input CoreGeneratorInstanceUpsertInput { """A validator related to generators""" type CoreGeneratorValidator implements CoreNode & CoreValidator { _updated_at: DateTime - checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! + checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! completed_at: TextAttribute conclusion: TextAttribute definition: NestedEdgedCoreGeneratorDefinition! @@ -2787,11 +2787,11 @@ type CoreGeneratorValidator implements CoreNode & CoreValidator { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! proposed_change: NestedEdgedCoreProposedChange! started_at: TextAttribute state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A validator related to generators""" @@ -2871,11 +2871,11 @@ interface CoreGenericAccount { """Unique identifier""" id: String label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute password: TextAttribute status: Dropdown - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """User Account for Infrahub""" @@ -2899,26 +2899,26 @@ input CoreGenericAccountUpdateInput { """A Git Repository integrated with Infrahub""" interface CoreGenericRepository { - checks(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreCheckDefinition! + checks(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreCheckDefinition! credential: NestedEdgedCoreCredential! description: TextAttribute display_label: String - generators(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar]): NestedPaginatedCoreGeneratorDefinition! - groups_objects(content__is_protected: Boolean, content__is_visible: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreRepositoryGroup! + generators(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar]): NestedPaginatedCoreGeneratorDefinition! + groups_objects(content__is_protected: Boolean, content__is_visible: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreRepositoryGroup! """Human friendly identifier""" hfid: [String!] """Unique identifier""" id: String internal_status: Dropdown location: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute operational_status: Dropdown - queries(depth__is_protected: Boolean, depth__is_visible: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], ids: [ID], isnull: Boolean, limit: Int, models__is_protected: Boolean, models__is_visible: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, query__is_protected: Boolean, query__is_visible: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): NestedPaginatedCoreGraphQLQuery! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + queries(depth__is_protected: Boolean, depth__is_visible: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], ids: [ID], isnull: Boolean, limit: NonNegativeInt, models__is_protected: Boolean, models__is_visible: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, query__is_protected: Boolean, query__is_visible: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): NestedPaginatedCoreGraphQLQuery! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! sync_status: Dropdown - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! - transformations(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreTransformation! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! + transformations(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreTransformation! } """A Git Repository integrated with Infrahub""" @@ -2961,9 +2961,9 @@ type CoreGlobalPermission implements CoreBasePermission & CoreNode { """Unique identifier""" id: String! identifier: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - roles(ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreAccountRole! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + roles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreAccountRole! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A permission that grants global rights to perform actions in Infrahub""" @@ -3038,7 +3038,7 @@ type CoreGraphQLQuery implements CoreNode { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """List of models associated with this query""" models: ListAttribute """None (required)""" @@ -3050,8 +3050,8 @@ type CoreGraphQLQuery implements CoreNode { """None (required)""" query: TextAttribute repository: NestedEdgedCoreGenericRepository! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! """variables in use in the query""" variables: JSONAttribute } @@ -3081,9 +3081,9 @@ type CoreGraphQLQueryDelete { """Group of nodes associated with a given GraphQLQuery.""" type CoreGraphQLQueryGroup implements CoreGroup { _updated_at: DateTime - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! description: TextAttribute display_label: String group_type: TextAttribute @@ -3092,13 +3092,13 @@ type CoreGraphQLQueryGroup implements CoreGroup { """Unique identifier""" id: String! label: TextAttribute - members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! name: TextAttribute """None""" parameters: JSONAttribute parent: NestedEdgedCoreGroup! query: NestedEdgedCoreGraphQLQuery! - subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! } """Group of nodes associated with a given GraphQLQuery.""" @@ -3206,9 +3206,9 @@ input CoreGraphQLQueryUpsertInput { """Generic Group Object.""" interface CoreGroup { - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! description: TextAttribute display_label: String group_type: TextAttribute @@ -3217,10 +3217,10 @@ interface CoreGroup { """Unique identifier""" id: String label: TextAttribute - members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! name: TextAttribute parent: NestedEdgedCoreGroup! - subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! } """ @@ -3240,11 +3240,11 @@ type CoreGroupAction implements CoreAction & CoreNode { Defines if the action should add or remove members from a group when triggered """ member_action: Dropdown - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """Short descriptive name""" name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - triggers(active__is_protected: Boolean, active__is_visible: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreTriggerRule! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + triggers(active__is_protected: Boolean, active__is_visible: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreTriggerRule! } """ @@ -3362,12 +3362,12 @@ type CoreGroupTriggerRule implements CoreNode & CoreTriggerRule { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """Indicate if the match should be for when members are added or removed""" member_update: Dropdown """The name of the trigger rule""" name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """ @@ -3512,10 +3512,10 @@ type CoreIPAddressPool implements CoreNode & CoreResourcePool & LineageSource { """Unique identifier""" id: String! ip_namespace: NestedEdgedBuiltinIPNamespace! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute - resources(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + resources(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A pool of IP address resources""" @@ -3609,10 +3609,10 @@ type CoreIPPrefixPool implements CoreNode & CoreResourcePool & LineageSource { """Unique identifier""" id: String! ip_namespace: NestedEdgedBuiltinIPNamespace! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute - resources(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + resources(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A pool of IP prefix resources""" @@ -3690,9 +3690,9 @@ input CoreIPPrefixPoolUpsertInput { """Element of the Menu""" interface CoreMenu { - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! description: TextAttribute display_label: String """Human friendly identifier""" @@ -3702,7 +3702,7 @@ interface CoreMenu { id: String kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute namespace: TextAttribute order_weight: NumberAttribute @@ -3711,15 +3711,15 @@ interface CoreMenu { protected: CheckboxAttribute required_permissions: ListAttribute section: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Menu Item""" type CoreMenuItem implements CoreMenu & CoreNode { _updated_at: DateTime - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], path__is_protected: Boolean, path__is_visible: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String]): NestedPaginatedCoreMenu! description: TextAttribute display_label: String """Human friendly identifier""" @@ -3729,7 +3729,7 @@ type CoreMenuItem implements CoreMenu & CoreNode { id: String! kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute namespace: TextAttribute order_weight: NumberAttribute @@ -3738,7 +3738,7 @@ type CoreMenuItem implements CoreMenu & CoreNode { protected: CheckboxAttribute required_permissions: ListAttribute section: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Menu Item""" @@ -3852,8 +3852,8 @@ interface CoreNode { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A trigger match that matches against attribute changes on a node""" @@ -3866,8 +3866,8 @@ type CoreNodeTriggerAttributeMatch implements CoreNode & CoreNodeTriggerMatch { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! trigger: NestedEdgedCoreNodeTriggerRule! """The value the attribute is updated to""" value: TextAttribute @@ -3967,8 +3967,8 @@ interface CoreNodeTriggerMatch { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! trigger: NestedEdgedCoreNodeTriggerRule! } @@ -3997,7 +3997,7 @@ type CoreNodeTriggerRelationshipMatch implements CoreNode & CoreNodeTriggerMatch hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """ Indicates if the relationship was added or removed or just updated in any way """ @@ -4006,7 +4006,7 @@ type CoreNodeTriggerRelationshipMatch implements CoreNode & CoreNodeTriggerMatch peer: TextAttribute """The name of the relationship to match against (required)""" relationship_name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! trigger: NestedEdgedCoreNodeTriggerRule! } @@ -4104,15 +4104,15 @@ type CoreNodeTriggerRule implements CoreNode & CoreTriggerRule { hfid: [String!] """Unique identifier""" id: String! - matches(ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNodeTriggerMatch! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + matches(ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNodeTriggerMatch! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """The type of modification to match against (required)""" mutation_action: TextAttribute """The name of the trigger rule""" name: TextAttribute """The kind of node to match against (required)""" node_kind: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """ @@ -4256,7 +4256,7 @@ type CoreNumberPool implements CoreNode & CoreResourcePool & LineageSource { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute """ The model of the object that requires integers to be allocated (required) @@ -4268,7 +4268,7 @@ type CoreNumberPool implements CoreNode & CoreResourcePool & LineageSource { pool_type: TextAttribute """The start range for the pool (required)""" start_range: NumberAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A pool of number resources""" @@ -4351,8 +4351,8 @@ interface CoreObjectComponentTemplate { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! template_name: TextAttribute } @@ -4386,13 +4386,13 @@ type CoreObjectPermission implements CoreBasePermission & CoreNode { """Unique identifier""" id: String! identifier: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute """None (required)""" namespace: TextAttribute - roles(ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreAccountRole! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + roles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreAccountRole! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A permission that grants rights to perform actions on objects""" @@ -4472,8 +4472,8 @@ interface CoreObjectTemplate { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! template_name: TextAttribute } @@ -4495,7 +4495,7 @@ input CoreObjectTemplateUpdateInput { type CoreObjectThread implements CoreNode & CoreThread { _updated_at: DateTime change: NestedEdgedCoreProposedChange! - comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! + comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! created_at: TextAttribute created_by: NestedEdgedCoreGenericAccount! display_label: String @@ -4504,11 +4504,11 @@ type CoreObjectThread implements CoreNode & CoreThread { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" object_path: TextAttribute resolved: CheckboxAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A thread related to an object on a proposed change""" @@ -4585,11 +4585,11 @@ type CorePasswordCredential implements CoreCredential & CoreNode { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute """None""" password: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None""" username: TextAttribute } @@ -4659,10 +4659,10 @@ interface CoreProfile { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! profile_name: TextAttribute profile_priority: NumberAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Base Profile in Infrahub.""" @@ -4683,8 +4683,8 @@ input CoreProfileUpdateInput { """Metadata related to a proposed change""" type CoreProposedChange implements CoreNode & CoreTaskTarget { _updated_at: DateTime - approved_by(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, password__is_protected: Boolean, password__is_visible: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String]): NestedPaginatedCoreGenericAccount! - comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreChangeComment! + approved_by(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, password__is_protected: Boolean, password__is_visible: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String]): NestedPaginatedCoreGenericAccount! + comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreChangeComment! created_by: NestedEdgedCoreGenericAccount! """None""" description: TextAttribute @@ -4697,20 +4697,20 @@ type CoreProposedChange implements CoreNode & CoreTaskTarget { id: String! """None""" is_draft: CheckboxAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" name: TextAttribute - rejected_by(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, password__is_protected: Boolean, password__is_visible: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String]): NestedPaginatedCoreGenericAccount! - reviewers(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, password__is_protected: Boolean, password__is_visible: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String]): NestedPaginatedCoreGenericAccount! + rejected_by(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, password__is_protected: Boolean, password__is_visible: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String]): NestedPaginatedCoreGenericAccount! + reviewers(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, password__is_protected: Boolean, password__is_visible: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String]): NestedPaginatedCoreGenericAccount! """None (required)""" source_branch: TextAttribute """None""" state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - threads(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, offset: Int, order: OrderInput, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean]): NestedPaginatedCoreThread! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + threads(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean]): NestedPaginatedCoreThread! """None""" total_comments: NumberAttribute - validations(completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, offset: Int, order: OrderInput, started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String]): NestedPaginatedCoreValidator! + validations(completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String]): NestedPaginatedCoreValidator! } """Metadata related to a proposed change""" @@ -4791,30 +4791,30 @@ A Git Repository integrated with Infrahub, Git-side will not be updated """ type CoreReadOnlyRepository implements CoreGenericRepository & CoreNode & CoreTaskTarget & LineageOwner & LineageSource { _updated_at: DateTime - checks(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreCheckDefinition! + checks(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreCheckDefinition! """None""" commit: TextAttribute credential: NestedEdgedCoreCredential! description: TextAttribute display_label: String - generators(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar]): NestedPaginatedCoreGeneratorDefinition! - groups_objects(content__is_protected: Boolean, content__is_visible: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreRepositoryGroup! + generators(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar]): NestedPaginatedCoreGeneratorDefinition! + groups_objects(content__is_protected: Boolean, content__is_visible: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreRepositoryGroup! """Human friendly identifier""" hfid: [String!] """Unique identifier""" id: String! internal_status: Dropdown location: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute operational_status: Dropdown - queries(depth__is_protected: Boolean, depth__is_visible: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], ids: [ID], isnull: Boolean, limit: Int, models__is_protected: Boolean, models__is_visible: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, query__is_protected: Boolean, query__is_visible: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): NestedPaginatedCoreGraphQLQuery! + queries(depth__is_protected: Boolean, depth__is_visible: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], ids: [ID], isnull: Boolean, limit: NonNegativeInt, models__is_protected: Boolean, models__is_visible: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, query__is_protected: Boolean, query__is_visible: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): NestedPaginatedCoreGraphQLQuery! """None""" ref: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! sync_status: Dropdown - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! - transformations(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreTransformation! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! + transformations(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreTransformation! } """ @@ -4916,7 +4916,7 @@ input CoreReadOnlyRepositoryUpsertInput { """A Git Repository integrated with Infrahub""" type CoreRepository implements CoreGenericRepository & CoreNode & CoreTaskTarget & LineageOwner & LineageSource { _updated_at: DateTime - checks(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreCheckDefinition! + checks(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreCheckDefinition! """None""" commit: TextAttribute credential: NestedEdgedCoreCredential! @@ -4924,22 +4924,22 @@ type CoreRepository implements CoreGenericRepository & CoreNode & CoreTaskTarget default_branch: TextAttribute description: TextAttribute display_label: String - generators(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar]): NestedPaginatedCoreGeneratorDefinition! - groups_objects(content__is_protected: Boolean, content__is_visible: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreRepositoryGroup! + generators(class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar]): NestedPaginatedCoreGeneratorDefinition! + groups_objects(content__is_protected: Boolean, content__is_visible: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreRepositoryGroup! """Human friendly identifier""" hfid: [String!] """Unique identifier""" id: String! internal_status: Dropdown location: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute operational_status: Dropdown - queries(depth__is_protected: Boolean, depth__is_visible: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], ids: [ID], isnull: Boolean, limit: Int, models__is_protected: Boolean, models__is_visible: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, query__is_protected: Boolean, query__is_visible: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): NestedPaginatedCoreGraphQLQuery! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + queries(depth__is_protected: Boolean, depth__is_visible: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], ids: [ID], isnull: Boolean, limit: NonNegativeInt, models__is_protected: Boolean, models__is_visible: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, query__is_protected: Boolean, query__is_visible: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): NestedPaginatedCoreGraphQLQuery! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! sync_status: Dropdown - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! - transformations(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreTransformation! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! + transformations(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): NestedPaginatedCoreTransformation! } """A Git Repository integrated with Infrahub""" @@ -4977,11 +4977,11 @@ type CoreRepositoryDelete { """Group of nodes associated with a given repository.""" type CoreRepositoryGroup implements CoreGroup { _updated_at: DateTime - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """Type of data to load, can be either `object` or `menu` (required)""" content: Dropdown - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! description: TextAttribute display_label: String group_type: TextAttribute @@ -4990,11 +4990,11 @@ type CoreRepositoryGroup implements CoreGroup { """Unique identifier""" id: String! label: TextAttribute - members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! name: TextAttribute parent: NestedEdgedCoreGroup! repository: NestedEdgedCoreGenericRepository! - subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! } """Group of nodes associated with a given repository.""" @@ -5126,7 +5126,7 @@ input CoreRepositoryUpsertInput { """A Validator related to a specific repository""" type CoreRepositoryValidator implements CoreNode & CoreValidator { _updated_at: DateTime - checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! + checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! completed_at: TextAttribute conclusion: TextAttribute display_label: String @@ -5135,12 +5135,12 @@ type CoreRepositoryValidator implements CoreNode & CoreValidator { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! proposed_change: NestedEdgedCoreProposedChange! repository: NestedEdgedCoreGenericRepository! started_at: TextAttribute state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A Validator related to a specific repository""" @@ -5220,9 +5220,9 @@ interface CoreResourcePool { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """ @@ -5258,12 +5258,12 @@ type CoreSchemaCheck implements CoreCheck & CoreNode { id: String! kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! message: TextAttribute name: TextAttribute origin: TextAttribute severity: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! validator: NestedEdgedCoreValidator! } @@ -5346,7 +5346,7 @@ input CoreSchemaCheckUpsertInput { """A validator related to the schema""" type CoreSchemaValidator implements CoreNode & CoreValidator { _updated_at: DateTime - checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! + checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! completed_at: TextAttribute conclusion: TextAttribute display_label: String @@ -5355,11 +5355,11 @@ type CoreSchemaValidator implements CoreNode & CoreValidator { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! proposed_change: NestedEdgedCoreProposedChange! started_at: TextAttribute state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A validator related to the schema""" @@ -5438,12 +5438,12 @@ type CoreStandardCheck implements CoreCheck & CoreNode { id: String! kind: TextAttribute label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! message: TextAttribute name: TextAttribute origin: TextAttribute severity: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! validator: NestedEdgedCoreValidator! } @@ -5520,9 +5520,9 @@ input CoreStandardCheckUpsertInput { """Group of nodes of any kind.""" type CoreStandardGroup implements CoreGroup { _updated_at: DateTime - ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ancestors(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + children(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + descendants(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! description: TextAttribute display_label: String group_type: TextAttribute @@ -5531,10 +5531,10 @@ type CoreStandardGroup implements CoreGroup { """Unique identifier""" id: String! label: TextAttribute - members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + members(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! name: TextAttribute parent: NestedEdgedCoreGroup! - subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedCoreNode! + subscribers(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreNode! } """Group of nodes of any kind.""" @@ -5610,13 +5610,13 @@ type CoreStandardWebhook implements CoreNode & CoreTaskTarget & CoreWebhook { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute """Only send node mutation events for nodes of this kind""" node_kind: TextAttribute """None (required)""" shared_key: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! url: TextAttribute validate_certificates: CheckboxAttribute } @@ -5701,8 +5701,8 @@ interface CoreTaskTarget { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Extend a node to be associated with tasks""" @@ -5721,7 +5721,7 @@ input CoreTaskTargetUpdateInput { """A thread on a Proposed Change""" interface CoreThread { change: NestedEdgedCoreProposedChange! - comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! + comments(created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, text__is_protected: Boolean, text__is_visible: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): NestedPaginatedCoreThreadComment! created_at: TextAttribute created_by: NestedEdgedCoreGenericAccount! display_label: String @@ -5730,9 +5730,9 @@ interface CoreThread { """Unique identifier""" id: String label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! resolved: CheckboxAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A comment on thread within a Proposed Change""" @@ -5745,8 +5745,8 @@ type CoreThreadComment implements CoreComment & CoreNode { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! text: TextAttribute thread: NestedEdgedCoreThread! } @@ -5835,12 +5835,12 @@ type CoreTransformJinja2 implements CoreNode & CoreTransformation { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute query: NestedEdgedCoreGraphQLQuery! repository: NestedEdgedCoreGenericRepository! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! """None (required)""" template_path: TextAttribute timeout: NumberAttribute @@ -5929,12 +5929,12 @@ type CoreTransformPython implements CoreNode & CoreTransformation { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute query: NestedEdgedCoreGraphQLQuery! repository: NestedEdgedCoreGenericRepository! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! timeout: NumberAttribute } @@ -6020,12 +6020,12 @@ interface CoreTransformation { """Unique identifier""" id: String label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute query: NestedEdgedCoreGraphQLQuery! repository: NestedEdgedCoreGenericRepository! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + tags(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! timeout: NumberAttribute } @@ -6069,10 +6069,10 @@ interface CoreTriggerRule { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """The name of the trigger rule""" name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """ @@ -6108,7 +6108,7 @@ input CoreTriggerRuleUpdateInput { type CoreUserValidator implements CoreNode & CoreValidator { _updated_at: DateTime check_definition: NestedEdgedCoreCheckDefinition! - checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! + checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! completed_at: TextAttribute conclusion: TextAttribute display_label: String @@ -6117,12 +6117,12 @@ type CoreUserValidator implements CoreNode & CoreValidator { """Unique identifier""" id: String! label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! proposed_change: NestedEdgedCoreProposedChange! repository: NestedEdgedCoreGenericRepository! started_at: TextAttribute state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A Validator related to a user defined checks in a repository""" @@ -6196,7 +6196,7 @@ input CoreUserValidatorUpsertInput { } interface CoreValidator { - checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! + checks(conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], isnull: Boolean, kind__is_protected: Boolean, kind__is_visible: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, message__is_protected: Boolean, message__is_visible: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], severity__is_protected: Boolean, severity__is_visible: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String]): NestedPaginatedCoreCheck! completed_at: TextAttribute conclusion: TextAttribute display_label: String @@ -6205,11 +6205,11 @@ interface CoreValidator { """Unique identifier""" id: String label: TextAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! proposed_change: NestedEdgedCoreProposedChange! started_at: TextAttribute state: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } type CoreValidatorUpdate { @@ -6242,11 +6242,11 @@ interface CoreWebhook { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute """Only send node mutation events for nodes of this kind""" node_kind: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! url: TextAttribute validate_certificates: CheckboxAttribute } @@ -6286,8 +6286,8 @@ interface CoreWeightedPoolResource { hfid: [String!] """Unique identifier""" id: String - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """ @@ -7325,10 +7325,10 @@ type InternalAccountToken implements CoreNode { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None""" name: TextAttribute - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" token: TextAttribute } @@ -7338,10 +7338,10 @@ IPv4 or IPv6 prefix also referred as network which has not been allocated yet """ type InternalIPPrefixAvailable implements BuiltinIPPrefix & CoreNode { _updated_at: DateTime - ancestors(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + ancestors(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! broadcast_address: TextAttribute - children(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! - descendants(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + children(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + descendants(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! description: TextAttribute display_label: String """Human friendly identifier""" @@ -7349,20 +7349,20 @@ type InternalIPPrefixAvailable implements BuiltinIPPrefix & CoreNode { hostmask: TextAttribute """Unique identifier""" id: String! - ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedBuiltinIPAddress! + ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinIPAddress! ip_namespace: NestedEdgedBuiltinIPNamespace! """All IP addresses within this prefix are considered usable""" is_pool: CheckboxAttribute is_top_level: CheckboxAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! member_type: Dropdown netmask: TextAttribute network_address: TextAttribute parent: NestedEdgedBuiltinIPPrefix! prefix: IPNetwork - profiles(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, offset: Int, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! - resource_pool(default_address_type__is_protected: Boolean, default_address_type__is_visible: Boolean, default_address_type__owner__id: ID, default_address_type__source__id: ID, default_address_type__value: String, default_address_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreIPAddressPool! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + profiles(ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! + resource_pool(default_address_type__is_protected: Boolean, default_address_type__is_visible: Boolean, default_address_type__owner__id: ID, default_address_type__source__id: ID, default_address_type__value: String, default_address_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreIPAddressPool! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], include_descendants: Boolean, isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! utilization: NumberAttribute } @@ -7380,9 +7380,9 @@ type InternalIPRangeAvailable implements BuiltinIPAddress & CoreNode { ip_prefix: NestedEdgedBuiltinIPPrefix! """None (required)""" last_address: IPHost - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - profiles(ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + profiles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Refresh Token""" @@ -7396,8 +7396,8 @@ type InternalRefreshToken implements CoreNode { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A namespace that segments IPAM""" @@ -7411,12 +7411,12 @@ type IpamNamespace implements BuiltinIPNamespace & CoreNode { hfid: [String!] """Unique identifier""" id: String! - ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedBuiltinIPAddress! - ip_prefixes(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + ip_addresses(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinIPAddress! + ip_prefixes(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! name: TextAttribute - profiles(ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + profiles(ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt]): NestedPaginatedCoreProfile! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """A namespace that segments IPAM""" @@ -9406,6 +9406,14 @@ type NodeMutatedEvent implements EventNodeInterface { relationships: [InfrahubMutatedRelationship!]! } +""" +A GraphQL scalar type that validates non-negative integer values. + +This scalar ensures that values are integers >= 0. It accepts None (null in GraphQL) +and rejects negative integers by raising ValidationError. +""" +scalar NonNegativeInt + type NonRequiredBooleanValueField { value: Boolean } @@ -10178,13 +10186,13 @@ type ProfileBuiltinIPAddress implements CoreNode & CoreProfile & LineageSource { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" profile_name: TextAttribute """None""" profile_priority: NumberAttribute - related_nodes(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, offset: Int, order: OrderInput): NestedPaginatedBuiltinIPAddress! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + related_nodes(address__is_protected: Boolean, address__is_visible: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinIPAddress! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Profile for BuiltinIPAddress""" @@ -10254,15 +10262,15 @@ type ProfileBuiltinIPPrefix implements CoreNode & CoreProfile & LineageSource { id: String! """All IP addresses within this prefix are considered usable""" is_pool: CheckboxAttribute - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None""" member_type: Dropdown """None (required)""" profile_name: TextAttribute """None""" profile_priority: NumberAttribute - related_nodes(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: Int, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + related_nodes(broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], isnull: Boolean, limit: NonNegativeInt, member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): NestedPaginatedBuiltinIPPrefix! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Profile for BuiltinIPPrefix""" @@ -10339,13 +10347,13 @@ type ProfileBuiltinTag implements CoreNode & CoreProfile & LineageSource { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" profile_name: TextAttribute """None""" profile_priority: NumberAttribute - related_nodes(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedBuiltinTag! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + related_nodes(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedBuiltinTag! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Profile for BuiltinTag""" @@ -10413,13 +10421,13 @@ type ProfileIpamNamespace implements CoreNode & CoreProfile & LineageSource { hfid: [String!] """Unique identifier""" id: String! - member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + member_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! """None (required)""" profile_name: TextAttribute """None""" profile_priority: NumberAttribute - related_nodes(default__is_protected: Boolean, default__is_visible: Boolean, default__owner__id: ID, default__source__id: ID, default__value: Boolean, default__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedIpamNamespace! - subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput): NestedPaginatedCoreGroup! + related_nodes(default__is_protected: Boolean, default__is_visible: Boolean, default__owner__id: ID, default__source__id: ID, default__value: Boolean, default__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], isnull: Boolean, limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedIpamNamespace! + subscriber_of_groups(description__is_protected: Boolean, description__is_visible: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], ids: [ID], isnull: Boolean, label__is_protected: Boolean, label__is_visible: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, name__is_protected: Boolean, name__is_visible: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput): NestedPaginatedCoreGroup! } """Profile for IpamNamespace""" @@ -10706,95 +10714,95 @@ type Query { AccountProfile: CoreGenericAccount """Retrieve information about active branches.""" Branch(ids: [ID], name: String): [Branch!]! - BuiltinIPAddress(address__is_protected: Boolean, address__is_visible: Boolean, address__isnull: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_available: Boolean, ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], ip_prefix__broadcast_address__is_protected: Boolean, ip_prefix__broadcast_address__is_visible: Boolean, ip_prefix__broadcast_address__owner__id: ID, ip_prefix__broadcast_address__source__id: ID, ip_prefix__broadcast_address__value: String, ip_prefix__broadcast_address__values: [String], ip_prefix__description__is_protected: Boolean, ip_prefix__description__is_visible: Boolean, ip_prefix__description__owner__id: ID, ip_prefix__description__source__id: ID, ip_prefix__description__value: String, ip_prefix__description__values: [String], ip_prefix__hostmask__is_protected: Boolean, ip_prefix__hostmask__is_visible: Boolean, ip_prefix__hostmask__owner__id: ID, ip_prefix__hostmask__source__id: ID, ip_prefix__hostmask__value: String, ip_prefix__hostmask__values: [String], ip_prefix__ids: [ID], ip_prefix__is_pool__is_protected: Boolean, ip_prefix__is_pool__is_visible: Boolean, ip_prefix__is_pool__owner__id: ID, ip_prefix__is_pool__source__id: ID, ip_prefix__is_pool__value: Boolean, ip_prefix__is_pool__values: [Boolean], ip_prefix__is_top_level__is_protected: Boolean, ip_prefix__is_top_level__is_visible: Boolean, ip_prefix__is_top_level__owner__id: ID, ip_prefix__is_top_level__source__id: ID, ip_prefix__is_top_level__value: Boolean, ip_prefix__is_top_level__values: [Boolean], ip_prefix__isnull: Boolean, ip_prefix__member_type__is_protected: Boolean, ip_prefix__member_type__is_visible: Boolean, ip_prefix__member_type__owner__id: ID, ip_prefix__member_type__source__id: ID, ip_prefix__member_type__value: String, ip_prefix__member_type__values: [String], ip_prefix__netmask__is_protected: Boolean, ip_prefix__netmask__is_visible: Boolean, ip_prefix__netmask__owner__id: ID, ip_prefix__netmask__source__id: ID, ip_prefix__netmask__value: String, ip_prefix__netmask__values: [String], ip_prefix__network_address__is_protected: Boolean, ip_prefix__network_address__is_visible: Boolean, ip_prefix__network_address__owner__id: ID, ip_prefix__network_address__source__id: ID, ip_prefix__network_address__value: String, ip_prefix__network_address__values: [String], ip_prefix__prefix__is_protected: Boolean, ip_prefix__prefix__is_visible: Boolean, ip_prefix__prefix__owner__id: ID, ip_prefix__prefix__source__id: ID, ip_prefix__prefix__value: String, ip_prefix__prefix__values: [String], ip_prefix__utilization__is_protected: Boolean, ip_prefix__utilization__is_visible: Boolean, ip_prefix__utilization__owner__id: ID, ip_prefix__utilization__source__id: ID, ip_prefix__utilization__value: BigInt, ip_prefix__utilization__values: [BigInt], kinds: [String!], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedBuiltinIPAddress! - BuiltinIPNamespace(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_addresses__address__is_protected: Boolean, ip_addresses__address__is_visible: Boolean, ip_addresses__address__owner__id: ID, ip_addresses__address__source__id: ID, ip_addresses__address__value: String, ip_addresses__address__values: [String], ip_addresses__description__is_protected: Boolean, ip_addresses__description__is_visible: Boolean, ip_addresses__description__owner__id: ID, ip_addresses__description__source__id: ID, ip_addresses__description__value: String, ip_addresses__description__values: [String], ip_addresses__ids: [ID], ip_addresses__isnull: Boolean, ip_prefixes__broadcast_address__is_protected: Boolean, ip_prefixes__broadcast_address__is_visible: Boolean, ip_prefixes__broadcast_address__owner__id: ID, ip_prefixes__broadcast_address__source__id: ID, ip_prefixes__broadcast_address__value: String, ip_prefixes__broadcast_address__values: [String], ip_prefixes__description__is_protected: Boolean, ip_prefixes__description__is_visible: Boolean, ip_prefixes__description__owner__id: ID, ip_prefixes__description__source__id: ID, ip_prefixes__description__value: String, ip_prefixes__description__values: [String], ip_prefixes__hostmask__is_protected: Boolean, ip_prefixes__hostmask__is_visible: Boolean, ip_prefixes__hostmask__owner__id: ID, ip_prefixes__hostmask__source__id: ID, ip_prefixes__hostmask__value: String, ip_prefixes__hostmask__values: [String], ip_prefixes__ids: [ID], ip_prefixes__is_pool__is_protected: Boolean, ip_prefixes__is_pool__is_visible: Boolean, ip_prefixes__is_pool__owner__id: ID, ip_prefixes__is_pool__source__id: ID, ip_prefixes__is_pool__value: Boolean, ip_prefixes__is_pool__values: [Boolean], ip_prefixes__is_top_level__is_protected: Boolean, ip_prefixes__is_top_level__is_visible: Boolean, ip_prefixes__is_top_level__owner__id: ID, ip_prefixes__is_top_level__source__id: ID, ip_prefixes__is_top_level__value: Boolean, ip_prefixes__is_top_level__values: [Boolean], ip_prefixes__isnull: Boolean, ip_prefixes__member_type__is_protected: Boolean, ip_prefixes__member_type__is_visible: Boolean, ip_prefixes__member_type__owner__id: ID, ip_prefixes__member_type__source__id: ID, ip_prefixes__member_type__value: String, ip_prefixes__member_type__values: [String], ip_prefixes__netmask__is_protected: Boolean, ip_prefixes__netmask__is_visible: Boolean, ip_prefixes__netmask__owner__id: ID, ip_prefixes__netmask__source__id: ID, ip_prefixes__netmask__value: String, ip_prefixes__netmask__values: [String], ip_prefixes__network_address__is_protected: Boolean, ip_prefixes__network_address__is_visible: Boolean, ip_prefixes__network_address__owner__id: ID, ip_prefixes__network_address__source__id: ID, ip_prefixes__network_address__value: String, ip_prefixes__network_address__values: [String], ip_prefixes__prefix__is_protected: Boolean, ip_prefixes__prefix__is_visible: Boolean, ip_prefixes__prefix__owner__id: ID, ip_prefixes__prefix__source__id: ID, ip_prefixes__prefix__value: String, ip_prefixes__prefix__values: [String], ip_prefixes__utilization__is_protected: Boolean, ip_prefixes__utilization__is_visible: Boolean, ip_prefixes__utilization__owner__id: ID, ip_prefixes__utilization__source__id: ID, ip_prefixes__utilization__value: BigInt, ip_prefixes__utilization__values: [BigInt], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedBuiltinIPNamespace! - BuiltinIPPrefix(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__isnull: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], children__broadcast_address__is_protected: Boolean, children__broadcast_address__is_visible: Boolean, children__broadcast_address__owner__id: ID, children__broadcast_address__source__id: ID, children__broadcast_address__value: String, children__broadcast_address__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__hostmask__is_protected: Boolean, children__hostmask__is_visible: Boolean, children__hostmask__owner__id: ID, children__hostmask__source__id: ID, children__hostmask__value: String, children__hostmask__values: [String], children__ids: [ID], children__is_pool__is_protected: Boolean, children__is_pool__is_visible: Boolean, children__is_pool__owner__id: ID, children__is_pool__source__id: ID, children__is_pool__value: Boolean, children__is_pool__values: [Boolean], children__is_top_level__is_protected: Boolean, children__is_top_level__is_visible: Boolean, children__is_top_level__owner__id: ID, children__is_top_level__source__id: ID, children__is_top_level__value: Boolean, children__is_top_level__values: [Boolean], children__isnull: Boolean, children__member_type__is_protected: Boolean, children__member_type__is_visible: Boolean, children__member_type__owner__id: ID, children__member_type__source__id: ID, children__member_type__value: String, children__member_type__values: [String], children__netmask__is_protected: Boolean, children__netmask__is_visible: Boolean, children__netmask__owner__id: ID, children__netmask__source__id: ID, children__netmask__value: String, children__netmask__values: [String], children__network_address__is_protected: Boolean, children__network_address__is_visible: Boolean, children__network_address__owner__id: ID, children__network_address__source__id: ID, children__network_address__value: String, children__network_address__values: [String], children__prefix__is_protected: Boolean, children__prefix__is_visible: Boolean, children__prefix__owner__id: ID, children__prefix__source__id: ID, children__prefix__value: String, children__prefix__values: [String], children__utilization__is_protected: Boolean, children__utilization__is_visible: Boolean, children__utilization__owner__id: ID, children__utilization__source__id: ID, children__utilization__value: BigInt, children__utilization__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__isnull: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], include_available: Boolean, ip_addresses__address__is_protected: Boolean, ip_addresses__address__is_visible: Boolean, ip_addresses__address__owner__id: ID, ip_addresses__address__source__id: ID, ip_addresses__address__value: String, ip_addresses__address__values: [String], ip_addresses__description__is_protected: Boolean, ip_addresses__description__is_visible: Boolean, ip_addresses__description__owner__id: ID, ip_addresses__description__source__id: ID, ip_addresses__description__value: String, ip_addresses__description__values: [String], ip_addresses__ids: [ID], ip_addresses__isnull: Boolean, ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__isnull: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__isnull: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], kinds: [String!], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__isnull: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__isnull: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__isnull: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: Int, order: OrderInput, parent__broadcast_address__is_protected: Boolean, parent__broadcast_address__is_visible: Boolean, parent__broadcast_address__owner__id: ID, parent__broadcast_address__source__id: ID, parent__broadcast_address__value: String, parent__broadcast_address__values: [String], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__hostmask__is_protected: Boolean, parent__hostmask__is_visible: Boolean, parent__hostmask__owner__id: ID, parent__hostmask__source__id: ID, parent__hostmask__value: String, parent__hostmask__values: [String], parent__ids: [ID], parent__is_pool__is_protected: Boolean, parent__is_pool__is_visible: Boolean, parent__is_pool__owner__id: ID, parent__is_pool__source__id: ID, parent__is_pool__value: Boolean, parent__is_pool__values: [Boolean], parent__is_top_level__is_protected: Boolean, parent__is_top_level__is_visible: Boolean, parent__is_top_level__owner__id: ID, parent__is_top_level__source__id: ID, parent__is_top_level__value: Boolean, parent__is_top_level__values: [Boolean], parent__isnull: Boolean, parent__member_type__is_protected: Boolean, parent__member_type__is_visible: Boolean, parent__member_type__owner__id: ID, parent__member_type__source__id: ID, parent__member_type__value: String, parent__member_type__values: [String], parent__netmask__is_protected: Boolean, parent__netmask__is_visible: Boolean, parent__netmask__owner__id: ID, parent__netmask__source__id: ID, parent__netmask__value: String, parent__netmask__values: [String], parent__network_address__is_protected: Boolean, parent__network_address__is_visible: Boolean, parent__network_address__owner__id: ID, parent__network_address__source__id: ID, parent__network_address__value: String, parent__network_address__values: [String], parent__prefix__is_protected: Boolean, parent__prefix__is_visible: Boolean, parent__prefix__owner__id: ID, parent__prefix__source__id: ID, parent__prefix__value: String, parent__prefix__values: [String], parent__utilization__is_protected: Boolean, parent__utilization__is_visible: Boolean, parent__utilization__owner__id: ID, parent__utilization__source__id: ID, parent__utilization__value: BigInt, parent__utilization__values: [BigInt], partial_match: Boolean, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__isnull: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], resource_pool__default_address_type__is_protected: Boolean, resource_pool__default_address_type__is_visible: Boolean, resource_pool__default_address_type__owner__id: ID, resource_pool__default_address_type__source__id: ID, resource_pool__default_address_type__value: String, resource_pool__default_address_type__values: [String], resource_pool__default_prefix_length__is_protected: Boolean, resource_pool__default_prefix_length__is_visible: Boolean, resource_pool__default_prefix_length__owner__id: ID, resource_pool__default_prefix_length__source__id: ID, resource_pool__default_prefix_length__value: BigInt, resource_pool__default_prefix_length__values: [BigInt], resource_pool__description__is_protected: Boolean, resource_pool__description__is_visible: Boolean, resource_pool__description__owner__id: ID, resource_pool__description__source__id: ID, resource_pool__description__value: String, resource_pool__description__values: [String], resource_pool__ids: [ID], resource_pool__isnull: Boolean, resource_pool__name__is_protected: Boolean, resource_pool__name__is_visible: Boolean, resource_pool__name__owner__id: ID, resource_pool__name__source__id: ID, resource_pool__name__value: String, resource_pool__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__isnull: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): PaginatedBuiltinIPPrefix! - BuiltinTag(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedBuiltinTag! - CoreAccount(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__isnull: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, password__is_protected: Boolean, password__is_visible: Boolean, password__isnull: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreAccount! - CoreAccountGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreAccountGroup! - CoreAccountRole(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], groups__description__is_protected: Boolean, groups__description__is_visible: Boolean, groups__description__owner__id: ID, groups__description__source__id: ID, groups__description__value: String, groups__description__values: [String], groups__group_type__is_protected: Boolean, groups__group_type__is_visible: Boolean, groups__group_type__owner__id: ID, groups__group_type__source__id: ID, groups__group_type__value: String, groups__group_type__values: [String], groups__ids: [ID], groups__isnull: Boolean, groups__label__is_protected: Boolean, groups__label__is_visible: Boolean, groups__label__owner__id: ID, groups__label__source__id: ID, groups__label__value: String, groups__label__values: [String], groups__name__is_protected: Boolean, groups__name__is_visible: Boolean, groups__name__owner__id: ID, groups__name__source__id: ID, groups__name__value: String, groups__name__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, permissions__description__is_protected: Boolean, permissions__description__is_visible: Boolean, permissions__description__owner__id: ID, permissions__description__source__id: ID, permissions__description__value: String, permissions__description__values: [String], permissions__identifier__is_protected: Boolean, permissions__identifier__is_visible: Boolean, permissions__identifier__owner__id: ID, permissions__identifier__source__id: ID, permissions__identifier__value: String, permissions__identifier__values: [String], permissions__ids: [ID], permissions__isnull: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreAccountRole! - CoreAction(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], triggers__active__is_protected: Boolean, triggers__active__is_visible: Boolean, triggers__active__owner__id: ID, triggers__active__source__id: ID, triggers__active__value: Boolean, triggers__active__values: [Boolean], triggers__branch_scope__is_protected: Boolean, triggers__branch_scope__is_visible: Boolean, triggers__branch_scope__owner__id: ID, triggers__branch_scope__source__id: ID, triggers__branch_scope__value: String, triggers__branch_scope__values: [String], triggers__description__is_protected: Boolean, triggers__description__is_visible: Boolean, triggers__description__owner__id: ID, triggers__description__source__id: ID, triggers__description__value: String, triggers__description__values: [String], triggers__ids: [ID], triggers__isnull: Boolean, triggers__name__is_protected: Boolean, triggers__name__is_visible: Boolean, triggers__name__owner__id: ID, triggers__name__source__id: ID, triggers__name__value: String, triggers__name__values: [String]): PaginatedCoreAction! - CoreArtifact(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checksum__is_protected: Boolean, checksum__is_visible: Boolean, checksum__isnull: Boolean, checksum__owner__id: ID, checksum__source__id: ID, checksum__value: String, checksum__values: [String], content_type__is_protected: Boolean, content_type__is_visible: Boolean, content_type__isnull: Boolean, content_type__owner__id: ID, content_type__source__id: ID, content_type__value: String, content_type__values: [String], definition__artifact_name__is_protected: Boolean, definition__artifact_name__is_visible: Boolean, definition__artifact_name__owner__id: ID, definition__artifact_name__source__id: ID, definition__artifact_name__value: String, definition__artifact_name__values: [String], definition__content_type__is_protected: Boolean, definition__content_type__is_visible: Boolean, definition__content_type__owner__id: ID, definition__content_type__source__id: ID, definition__content_type__value: String, definition__content_type__values: [String], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], object__ids: [ID], object__isnull: Boolean, offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__isnull: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifact! - CoreArtifactCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifact_id__is_protected: Boolean, artifact_id__is_visible: Boolean, artifact_id__isnull: Boolean, artifact_id__owner__id: ID, artifact_id__source__id: ID, artifact_id__value: String, artifact_id__values: [String], changed__is_protected: Boolean, changed__is_visible: Boolean, changed__isnull: Boolean, changed__owner__id: ID, changed__source__id: ID, changed__value: Boolean, changed__values: [Boolean], checksum__is_protected: Boolean, checksum__is_visible: Boolean, checksum__isnull: Boolean, checksum__owner__id: ID, checksum__source__id: ID, checksum__value: String, checksum__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, line_number__is_protected: Boolean, line_number__is_visible: Boolean, line_number__isnull: Boolean, line_number__owner__id: ID, line_number__source__id: ID, line_number__value: BigInt, line_number__values: [BigInt], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__isnull: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreArtifactCheck! - CoreArtifactDefinition(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifact_name__is_protected: Boolean, artifact_name__is_visible: Boolean, artifact_name__isnull: Boolean, artifact_name__owner__id: ID, artifact_name__source__id: ID, artifact_name__value: String, artifact_name__values: [String], content_type__is_protected: Boolean, content_type__is_visible: Boolean, content_type__isnull: Boolean, content_type__owner__id: ID, content_type__source__id: ID, content_type__value: String, content_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], targets__description__is_protected: Boolean, targets__description__is_visible: Boolean, targets__description__owner__id: ID, targets__description__source__id: ID, targets__description__value: String, targets__description__values: [String], targets__group_type__is_protected: Boolean, targets__group_type__is_visible: Boolean, targets__group_type__owner__id: ID, targets__group_type__source__id: ID, targets__group_type__value: String, targets__group_type__values: [String], targets__ids: [ID], targets__isnull: Boolean, targets__label__is_protected: Boolean, targets__label__is_visible: Boolean, targets__label__owner__id: ID, targets__label__source__id: ID, targets__label__value: String, targets__label__values: [String], targets__name__is_protected: Boolean, targets__name__is_visible: Boolean, targets__name__owner__id: ID, targets__name__source__id: ID, targets__name__value: String, targets__name__values: [String], transformation__description__is_protected: Boolean, transformation__description__is_visible: Boolean, transformation__description__owner__id: ID, transformation__description__source__id: ID, transformation__description__value: String, transformation__description__values: [String], transformation__ids: [ID], transformation__isnull: Boolean, transformation__label__is_protected: Boolean, transformation__label__is_visible: Boolean, transformation__label__owner__id: ID, transformation__label__source__id: ID, transformation__label__value: String, transformation__label__values: [String], transformation__name__is_protected: Boolean, transformation__name__is_visible: Boolean, transformation__name__owner__id: ID, transformation__name__source__id: ID, transformation__name__value: String, transformation__name__values: [String], transformation__timeout__is_protected: Boolean, transformation__timeout__is_visible: Boolean, transformation__timeout__owner__id: ID, transformation__timeout__source__id: ID, transformation__timeout__value: BigInt, transformation__timeout__values: [BigInt]): PaginatedCoreArtifactDefinition! - CoreArtifactTarget(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifacts__checksum__is_protected: Boolean, artifacts__checksum__is_visible: Boolean, artifacts__checksum__owner__id: ID, artifacts__checksum__source__id: ID, artifacts__checksum__value: String, artifacts__checksum__values: [String], artifacts__content_type__is_protected: Boolean, artifacts__content_type__is_visible: Boolean, artifacts__content_type__owner__id: ID, artifacts__content_type__source__id: ID, artifacts__content_type__value: String, artifacts__content_type__values: [String], artifacts__ids: [ID], artifacts__isnull: Boolean, artifacts__name__is_protected: Boolean, artifacts__name__is_visible: Boolean, artifacts__name__owner__id: ID, artifacts__name__source__id: ID, artifacts__name__value: String, artifacts__name__values: [String], artifacts__parameters__is_protected: Boolean, artifacts__parameters__is_visible: Boolean, artifacts__parameters__owner__id: ID, artifacts__parameters__source__id: ID, artifacts__parameters__value: GenericScalar, artifacts__parameters__values: [GenericScalar], artifacts__status__is_protected: Boolean, artifacts__status__is_visible: Boolean, artifacts__status__owner__id: ID, artifacts__status__source__id: ID, artifacts__status__value: String, artifacts__status__values: [String], artifacts__storage_id__is_protected: Boolean, artifacts__storage_id__is_visible: Boolean, artifacts__storage_id__owner__id: ID, artifacts__storage_id__source__id: ID, artifacts__storage_id__value: String, artifacts__storage_id__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifactTarget! - CoreArtifactThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifact_id__is_protected: Boolean, artifact_id__is_visible: Boolean, artifact_id__isnull: Boolean, artifact_id__owner__id: ID, artifact_id__source__id: ID, artifact_id__value: String, artifact_id__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, line_number__is_protected: Boolean, line_number__is_visible: Boolean, line_number__isnull: Boolean, line_number__owner__id: ID, line_number__source__id: ID, line_number__value: BigInt, line_number__values: [BigInt], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__isnull: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifactThread! - CoreArtifactValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], definition__artifact_name__is_protected: Boolean, definition__artifact_name__is_visible: Boolean, definition__artifact_name__owner__id: ID, definition__artifact_name__source__id: ID, definition__artifact_name__value: String, definition__artifact_name__values: [String], definition__content_type__is_protected: Boolean, definition__content_type__is_visible: Boolean, definition__content_type__owner__id: ID, definition__content_type__source__id: ID, definition__content_type__value: String, definition__content_type__values: [String], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifactValidator! - CoreBasePermission(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__isnull: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreBasePermission! - CoreChangeComment(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], text__is_protected: Boolean, text__is_visible: Boolean, text__isnull: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): PaginatedCoreChangeComment! - CoreChangeThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreChangeThread! - CoreCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreCheck! - CoreCheckDefinition(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__isnull: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__isnull: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], targets__description__is_protected: Boolean, targets__description__is_visible: Boolean, targets__description__owner__id: ID, targets__description__source__id: ID, targets__description__value: String, targets__description__values: [String], targets__group_type__is_protected: Boolean, targets__group_type__is_visible: Boolean, targets__group_type__owner__id: ID, targets__group_type__source__id: ID, targets__group_type__value: String, targets__group_type__values: [String], targets__ids: [ID], targets__isnull: Boolean, targets__label__is_protected: Boolean, targets__label__is_visible: Boolean, targets__label__owner__id: ID, targets__label__source__id: ID, targets__label__value: String, targets__label__values: [String], targets__name__is_protected: Boolean, targets__name__is_visible: Boolean, targets__name__owner__id: ID, targets__name__source__id: ID, targets__name__value: String, targets__name__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreCheckDefinition! - CoreComment(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], text__is_protected: Boolean, text__is_visible: Boolean, text__isnull: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): PaginatedCoreComment! - CoreCredential(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreCredential! - CoreCustomWebhook(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], event_type__is_protected: Boolean, event_type__is_visible: Boolean, event_type__isnull: Boolean, event_type__owner__id: ID, event_type__source__id: ID, event_type__value: String, event_type__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, shared_key__is_protected: Boolean, shared_key__is_visible: Boolean, shared_key__isnull: Boolean, shared_key__owner__id: ID, shared_key__source__id: ID, shared_key__value: String, shared_key__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], transformation__class_name__is_protected: Boolean, transformation__class_name__is_visible: Boolean, transformation__class_name__owner__id: ID, transformation__class_name__source__id: ID, transformation__class_name__value: String, transformation__class_name__values: [String], transformation__convert_query_response__is_protected: Boolean, transformation__convert_query_response__is_visible: Boolean, transformation__convert_query_response__owner__id: ID, transformation__convert_query_response__source__id: ID, transformation__convert_query_response__value: Boolean, transformation__convert_query_response__values: [Boolean], transformation__description__is_protected: Boolean, transformation__description__is_visible: Boolean, transformation__description__owner__id: ID, transformation__description__source__id: ID, transformation__description__value: String, transformation__description__values: [String], transformation__file_path__is_protected: Boolean, transformation__file_path__is_visible: Boolean, transformation__file_path__owner__id: ID, transformation__file_path__source__id: ID, transformation__file_path__value: String, transformation__file_path__values: [String], transformation__ids: [ID], transformation__isnull: Boolean, transformation__label__is_protected: Boolean, transformation__label__is_visible: Boolean, transformation__label__owner__id: ID, transformation__label__source__id: ID, transformation__label__value: String, transformation__label__values: [String], transformation__name__is_protected: Boolean, transformation__name__is_visible: Boolean, transformation__name__owner__id: ID, transformation__name__source__id: ID, transformation__name__value: String, transformation__name__values: [String], transformation__timeout__is_protected: Boolean, transformation__timeout__is_visible: Boolean, transformation__timeout__owner__id: ID, transformation__timeout__source__id: ID, transformation__timeout__value: BigInt, transformation__timeout__values: [BigInt], url__is_protected: Boolean, url__is_visible: Boolean, url__isnull: Boolean, url__owner__id: ID, url__source__id: ID, url__value: String, url__values: [String], validate_certificates__is_protected: Boolean, validate_certificates__is_visible: Boolean, validate_certificates__isnull: Boolean, validate_certificates__owner__id: ID, validate_certificates__source__id: ID, validate_certificates__value: Boolean, validate_certificates__values: [Boolean]): PaginatedCoreCustomWebhook! - CoreDataCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], conflicts__is_protected: Boolean, conflicts__is_visible: Boolean, conflicts__isnull: Boolean, conflicts__owner__id: ID, conflicts__source__id: ID, conflicts__value: GenericScalar, conflicts__values: [GenericScalar], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], enriched_conflict_id__is_protected: Boolean, enriched_conflict_id__is_visible: Boolean, enriched_conflict_id__isnull: Boolean, enriched_conflict_id__owner__id: ID, enriched_conflict_id__source__id: ID, enriched_conflict_id__value: String, enriched_conflict_id__values: [String], ids: [ID], keep_branch__is_protected: Boolean, keep_branch__is_visible: Boolean, keep_branch__isnull: Boolean, keep_branch__owner__id: ID, keep_branch__source__id: ID, keep_branch__value: String, keep_branch__values: [String], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreDataCheck! - CoreDataValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreDataValidator! - CoreFileCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], files__is_protected: Boolean, files__is_visible: Boolean, files__isnull: Boolean, files__owner__id: ID, files__source__id: ID, files__value: GenericScalar, files__values: [GenericScalar], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreFileCheck! - CoreFileThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], file__is_protected: Boolean, file__is_visible: Boolean, file__isnull: Boolean, file__owner__id: ID, file__source__id: ID, file__value: String, file__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, line_number__is_protected: Boolean, line_number__is_visible: Boolean, line_number__isnull: Boolean, line_number__owner__id: ID, line_number__source__id: ID, line_number__value: BigInt, line_number__values: [BigInt], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, repository__commit__is_protected: Boolean, repository__commit__is_visible: Boolean, repository__commit__owner__id: ID, repository__commit__source__id: ID, repository__commit__value: String, repository__commit__values: [String], repository__default_branch__is_protected: Boolean, repository__default_branch__is_visible: Boolean, repository__default_branch__owner__id: ID, repository__default_branch__source__id: ID, repository__default_branch__value: String, repository__default_branch__values: [String], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreFileThread! - CoreGeneratorAction(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generator__class_name__is_protected: Boolean, generator__class_name__is_visible: Boolean, generator__class_name__owner__id: ID, generator__class_name__source__id: ID, generator__class_name__value: String, generator__class_name__values: [String], generator__convert_query_response__is_protected: Boolean, generator__convert_query_response__is_visible: Boolean, generator__convert_query_response__owner__id: ID, generator__convert_query_response__source__id: ID, generator__convert_query_response__value: Boolean, generator__convert_query_response__values: [Boolean], generator__description__is_protected: Boolean, generator__description__is_visible: Boolean, generator__description__owner__id: ID, generator__description__source__id: ID, generator__description__value: String, generator__description__values: [String], generator__execute_after_merge__is_protected: Boolean, generator__execute_after_merge__is_visible: Boolean, generator__execute_after_merge__owner__id: ID, generator__execute_after_merge__source__id: ID, generator__execute_after_merge__value: Boolean, generator__execute_after_merge__values: [Boolean], generator__execute_in_proposed_change__is_protected: Boolean, generator__execute_in_proposed_change__is_visible: Boolean, generator__execute_in_proposed_change__owner__id: ID, generator__execute_in_proposed_change__source__id: ID, generator__execute_in_proposed_change__value: Boolean, generator__execute_in_proposed_change__values: [Boolean], generator__file_path__is_protected: Boolean, generator__file_path__is_visible: Boolean, generator__file_path__owner__id: ID, generator__file_path__source__id: ID, generator__file_path__value: String, generator__file_path__values: [String], generator__ids: [ID], generator__isnull: Boolean, generator__name__is_protected: Boolean, generator__name__is_visible: Boolean, generator__name__owner__id: ID, generator__name__source__id: ID, generator__name__value: String, generator__name__values: [String], generator__parameters__is_protected: Boolean, generator__parameters__is_visible: Boolean, generator__parameters__owner__id: ID, generator__parameters__source__id: ID, generator__parameters__value: GenericScalar, generator__parameters__values: [GenericScalar], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], triggers__active__is_protected: Boolean, triggers__active__is_visible: Boolean, triggers__active__owner__id: ID, triggers__active__source__id: ID, triggers__active__value: Boolean, triggers__active__values: [Boolean], triggers__branch_scope__is_protected: Boolean, triggers__branch_scope__is_visible: Boolean, triggers__branch_scope__owner__id: ID, triggers__branch_scope__source__id: ID, triggers__branch_scope__value: String, triggers__branch_scope__values: [String], triggers__description__is_protected: Boolean, triggers__description__is_visible: Boolean, triggers__description__owner__id: ID, triggers__description__source__id: ID, triggers__description__value: String, triggers__description__values: [String], triggers__ids: [ID], triggers__isnull: Boolean, triggers__name__is_protected: Boolean, triggers__name__is_visible: Boolean, triggers__name__owner__id: ID, triggers__name__source__id: ID, triggers__name__value: String, triggers__name__values: [String]): PaginatedCoreGeneratorAction! - CoreGeneratorAwareGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGeneratorAwareGroup! - CoreGeneratorCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], instance__is_protected: Boolean, instance__is_visible: Boolean, instance__isnull: Boolean, instance__owner__id: ID, instance__source__id: ID, instance__value: String, instance__values: [String], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreGeneratorCheck! - CoreGeneratorDefinition(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__isnull: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__isnull: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__isnull: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__isnull: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__isnull: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], targets__description__is_protected: Boolean, targets__description__is_visible: Boolean, targets__description__owner__id: ID, targets__description__source__id: ID, targets__description__value: String, targets__description__values: [String], targets__group_type__is_protected: Boolean, targets__group_type__is_visible: Boolean, targets__group_type__owner__id: ID, targets__group_type__source__id: ID, targets__group_type__value: String, targets__group_type__values: [String], targets__ids: [ID], targets__isnull: Boolean, targets__label__is_protected: Boolean, targets__label__is_visible: Boolean, targets__label__owner__id: ID, targets__label__source__id: ID, targets__label__value: String, targets__label__values: [String], targets__name__is_protected: Boolean, targets__name__is_visible: Boolean, targets__name__owner__id: ID, targets__name__source__id: ID, targets__name__value: String, targets__name__values: [String]): PaginatedCoreGeneratorDefinition! - CoreGeneratorGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGeneratorGroup! - CoreGeneratorInstance(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], definition__class_name__is_protected: Boolean, definition__class_name__is_visible: Boolean, definition__class_name__owner__id: ID, definition__class_name__source__id: ID, definition__class_name__value: String, definition__class_name__values: [String], definition__convert_query_response__is_protected: Boolean, definition__convert_query_response__is_visible: Boolean, definition__convert_query_response__owner__id: ID, definition__convert_query_response__source__id: ID, definition__convert_query_response__value: Boolean, definition__convert_query_response__values: [Boolean], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__execute_after_merge__is_protected: Boolean, definition__execute_after_merge__is_visible: Boolean, definition__execute_after_merge__owner__id: ID, definition__execute_after_merge__source__id: ID, definition__execute_after_merge__value: Boolean, definition__execute_after_merge__values: [Boolean], definition__execute_in_proposed_change__is_protected: Boolean, definition__execute_in_proposed_change__is_visible: Boolean, definition__execute_in_proposed_change__owner__id: ID, definition__execute_in_proposed_change__source__id: ID, definition__execute_in_proposed_change__value: Boolean, definition__execute_in_proposed_change__values: [Boolean], definition__file_path__is_protected: Boolean, definition__file_path__is_visible: Boolean, definition__file_path__owner__id: ID, definition__file_path__source__id: ID, definition__file_path__value: String, definition__file_path__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], object__ids: [ID], object__isnull: Boolean, offset: Int, order: OrderInput, partial_match: Boolean, status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGeneratorInstance! - CoreGeneratorValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], definition__class_name__is_protected: Boolean, definition__class_name__is_visible: Boolean, definition__class_name__owner__id: ID, definition__class_name__source__id: ID, definition__class_name__value: String, definition__class_name__values: [String], definition__convert_query_response__is_protected: Boolean, definition__convert_query_response__is_visible: Boolean, definition__convert_query_response__owner__id: ID, definition__convert_query_response__source__id: ID, definition__convert_query_response__value: Boolean, definition__convert_query_response__values: [Boolean], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__execute_after_merge__is_protected: Boolean, definition__execute_after_merge__is_visible: Boolean, definition__execute_after_merge__owner__id: ID, definition__execute_after_merge__source__id: ID, definition__execute_after_merge__value: Boolean, definition__execute_after_merge__values: [Boolean], definition__execute_in_proposed_change__is_protected: Boolean, definition__execute_in_proposed_change__is_visible: Boolean, definition__execute_in_proposed_change__owner__id: ID, definition__execute_in_proposed_change__source__id: ID, definition__execute_in_proposed_change__value: Boolean, definition__execute_in_proposed_change__values: [Boolean], definition__file_path__is_protected: Boolean, definition__file_path__is_visible: Boolean, definition__file_path__owner__id: ID, definition__file_path__source__id: ID, definition__file_path__value: String, definition__file_path__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGeneratorValidator! - CoreGenericAccount(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__isnull: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, password__is_protected: Boolean, password__is_visible: Boolean, password__isnull: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGenericAccount! - CoreGenericRepository(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__class_name__is_protected: Boolean, checks__class_name__is_visible: Boolean, checks__class_name__owner__id: ID, checks__class_name__source__id: ID, checks__class_name__value: String, checks__class_name__values: [String], checks__description__is_protected: Boolean, checks__description__is_visible: Boolean, checks__description__owner__id: ID, checks__description__source__id: ID, checks__description__value: String, checks__description__values: [String], checks__file_path__is_protected: Boolean, checks__file_path__is_visible: Boolean, checks__file_path__owner__id: ID, checks__file_path__source__id: ID, checks__file_path__value: String, checks__file_path__values: [String], checks__ids: [ID], checks__isnull: Boolean, checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__parameters__is_protected: Boolean, checks__parameters__is_visible: Boolean, checks__parameters__owner__id: ID, checks__parameters__source__id: ID, checks__parameters__value: GenericScalar, checks__parameters__values: [GenericScalar], checks__timeout__is_protected: Boolean, checks__timeout__is_visible: Boolean, checks__timeout__owner__id: ID, checks__timeout__source__id: ID, checks__timeout__value: BigInt, checks__timeout__values: [BigInt], credential__description__is_protected: Boolean, credential__description__is_visible: Boolean, credential__description__owner__id: ID, credential__description__source__id: ID, credential__description__value: String, credential__description__values: [String], credential__ids: [ID], credential__isnull: Boolean, credential__label__is_protected: Boolean, credential__label__is_visible: Boolean, credential__label__owner__id: ID, credential__label__source__id: ID, credential__label__value: String, credential__label__values: [String], credential__name__is_protected: Boolean, credential__name__is_visible: Boolean, credential__name__owner__id: ID, credential__name__source__id: ID, credential__name__value: String, credential__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generators__class_name__is_protected: Boolean, generators__class_name__is_visible: Boolean, generators__class_name__owner__id: ID, generators__class_name__source__id: ID, generators__class_name__value: String, generators__class_name__values: [String], generators__convert_query_response__is_protected: Boolean, generators__convert_query_response__is_visible: Boolean, generators__convert_query_response__owner__id: ID, generators__convert_query_response__source__id: ID, generators__convert_query_response__value: Boolean, generators__convert_query_response__values: [Boolean], generators__description__is_protected: Boolean, generators__description__is_visible: Boolean, generators__description__owner__id: ID, generators__description__source__id: ID, generators__description__value: String, generators__description__values: [String], generators__execute_after_merge__is_protected: Boolean, generators__execute_after_merge__is_visible: Boolean, generators__execute_after_merge__owner__id: ID, generators__execute_after_merge__source__id: ID, generators__execute_after_merge__value: Boolean, generators__execute_after_merge__values: [Boolean], generators__execute_in_proposed_change__is_protected: Boolean, generators__execute_in_proposed_change__is_visible: Boolean, generators__execute_in_proposed_change__owner__id: ID, generators__execute_in_proposed_change__source__id: ID, generators__execute_in_proposed_change__value: Boolean, generators__execute_in_proposed_change__values: [Boolean], generators__file_path__is_protected: Boolean, generators__file_path__is_visible: Boolean, generators__file_path__owner__id: ID, generators__file_path__source__id: ID, generators__file_path__value: String, generators__file_path__values: [String], generators__ids: [ID], generators__isnull: Boolean, generators__name__is_protected: Boolean, generators__name__is_visible: Boolean, generators__name__owner__id: ID, generators__name__source__id: ID, generators__name__value: String, generators__name__values: [String], generators__parameters__is_protected: Boolean, generators__parameters__is_visible: Boolean, generators__parameters__owner__id: ID, generators__parameters__source__id: ID, generators__parameters__value: GenericScalar, generators__parameters__values: [GenericScalar], groups_objects__content__is_protected: Boolean, groups_objects__content__is_visible: Boolean, groups_objects__content__owner__id: ID, groups_objects__content__source__id: ID, groups_objects__content__value: String, groups_objects__content__values: [String], groups_objects__description__is_protected: Boolean, groups_objects__description__is_visible: Boolean, groups_objects__description__owner__id: ID, groups_objects__description__source__id: ID, groups_objects__description__value: String, groups_objects__description__values: [String], groups_objects__group_type__is_protected: Boolean, groups_objects__group_type__is_visible: Boolean, groups_objects__group_type__owner__id: ID, groups_objects__group_type__source__id: ID, groups_objects__group_type__value: String, groups_objects__group_type__values: [String], groups_objects__ids: [ID], groups_objects__isnull: Boolean, groups_objects__label__is_protected: Boolean, groups_objects__label__is_visible: Boolean, groups_objects__label__owner__id: ID, groups_objects__label__source__id: ID, groups_objects__label__value: String, groups_objects__label__values: [String], groups_objects__name__is_protected: Boolean, groups_objects__name__is_visible: Boolean, groups_objects__name__owner__id: ID, groups_objects__name__source__id: ID, groups_objects__name__value: String, groups_objects__name__values: [String], hfid: [String], ids: [ID], internal_status__is_protected: Boolean, internal_status__is_visible: Boolean, internal_status__isnull: Boolean, internal_status__owner__id: ID, internal_status__source__id: ID, internal_status__value: String, internal_status__values: [String], limit: Int, location__is_protected: Boolean, location__is_visible: Boolean, location__isnull: Boolean, location__owner__id: ID, location__source__id: ID, location__value: String, location__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, operational_status__is_protected: Boolean, operational_status__is_visible: Boolean, operational_status__isnull: Boolean, operational_status__owner__id: ID, operational_status__source__id: ID, operational_status__value: String, operational_status__values: [String], order: OrderInput, partial_match: Boolean, queries__depth__is_protected: Boolean, queries__depth__is_visible: Boolean, queries__depth__owner__id: ID, queries__depth__source__id: ID, queries__depth__value: BigInt, queries__depth__values: [BigInt], queries__description__is_protected: Boolean, queries__description__is_visible: Boolean, queries__description__owner__id: ID, queries__description__source__id: ID, queries__description__value: String, queries__description__values: [String], queries__height__is_protected: Boolean, queries__height__is_visible: Boolean, queries__height__owner__id: ID, queries__height__source__id: ID, queries__height__value: BigInt, queries__height__values: [BigInt], queries__ids: [ID], queries__isnull: Boolean, queries__models__is_protected: Boolean, queries__models__is_visible: Boolean, queries__models__owner__id: ID, queries__models__source__id: ID, queries__models__value: GenericScalar, queries__models__values: [GenericScalar], queries__name__is_protected: Boolean, queries__name__is_visible: Boolean, queries__name__owner__id: ID, queries__name__source__id: ID, queries__name__value: String, queries__name__values: [String], queries__operations__is_protected: Boolean, queries__operations__is_visible: Boolean, queries__operations__owner__id: ID, queries__operations__source__id: ID, queries__operations__value: GenericScalar, queries__operations__values: [GenericScalar], queries__query__is_protected: Boolean, queries__query__is_visible: Boolean, queries__query__owner__id: ID, queries__query__source__id: ID, queries__query__value: String, queries__query__values: [String], queries__variables__is_protected: Boolean, queries__variables__is_visible: Boolean, queries__variables__owner__id: ID, queries__variables__source__id: ID, queries__variables__value: GenericScalar, queries__variables__values: [GenericScalar], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], sync_status__is_protected: Boolean, sync_status__is_visible: Boolean, sync_status__isnull: Boolean, sync_status__owner__id: ID, sync_status__source__id: ID, sync_status__value: String, sync_status__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], transformations__description__is_protected: Boolean, transformations__description__is_visible: Boolean, transformations__description__owner__id: ID, transformations__description__source__id: ID, transformations__description__value: String, transformations__description__values: [String], transformations__ids: [ID], transformations__isnull: Boolean, transformations__label__is_protected: Boolean, transformations__label__is_visible: Boolean, transformations__label__owner__id: ID, transformations__label__source__id: ID, transformations__label__value: String, transformations__label__values: [String], transformations__name__is_protected: Boolean, transformations__name__is_visible: Boolean, transformations__name__owner__id: ID, transformations__name__source__id: ID, transformations__name__value: String, transformations__name__values: [String], transformations__timeout__is_protected: Boolean, transformations__timeout__is_visible: Boolean, transformations__timeout__owner__id: ID, transformations__timeout__source__id: ID, transformations__timeout__value: BigInt, transformations__timeout__values: [BigInt]): PaginatedCoreGenericRepository! - CoreGlobalPermission(action__is_protected: Boolean, action__is_visible: Boolean, action__isnull: Boolean, action__owner__id: ID, action__source__id: ID, action__value: String, action__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], decision__is_protected: Boolean, decision__is_visible: Boolean, decision__isnull: Boolean, decision__owner__id: ID, decision__source__id: ID, decision__value: BigInt, decision__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__isnull: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGlobalPermission! - CoreGraphQLQuery(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], depth__is_protected: Boolean, depth__is_visible: Boolean, depth__isnull: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__isnull: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], models__is_protected: Boolean, models__is_visible: Boolean, models__isnull: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__isnull: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, partial_match: Boolean, query__is_protected: Boolean, query__is_visible: Boolean, query__isnull: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__isnull: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): PaginatedCoreGraphQLQuery! - CoreGraphQLQueryGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGraphQLQueryGroup! - CoreGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGroup! - CoreGroupAction(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group__description__is_protected: Boolean, group__description__is_visible: Boolean, group__description__owner__id: ID, group__description__source__id: ID, group__description__value: String, group__description__values: [String], group__group_type__is_protected: Boolean, group__group_type__is_visible: Boolean, group__group_type__owner__id: ID, group__group_type__source__id: ID, group__group_type__value: String, group__group_type__values: [String], group__ids: [ID], group__isnull: Boolean, group__label__is_protected: Boolean, group__label__is_visible: Boolean, group__label__owner__id: ID, group__label__source__id: ID, group__label__value: String, group__label__values: [String], group__name__is_protected: Boolean, group__name__is_visible: Boolean, group__name__owner__id: ID, group__name__source__id: ID, group__name__value: String, group__name__values: [String], hfid: [String], ids: [ID], limit: Int, member_action__is_protected: Boolean, member_action__is_visible: Boolean, member_action__isnull: Boolean, member_action__owner__id: ID, member_action__source__id: ID, member_action__value: String, member_action__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], triggers__active__is_protected: Boolean, triggers__active__is_visible: Boolean, triggers__active__owner__id: ID, triggers__active__source__id: ID, triggers__active__value: Boolean, triggers__active__values: [Boolean], triggers__branch_scope__is_protected: Boolean, triggers__branch_scope__is_visible: Boolean, triggers__branch_scope__owner__id: ID, triggers__branch_scope__source__id: ID, triggers__branch_scope__value: String, triggers__branch_scope__values: [String], triggers__description__is_protected: Boolean, triggers__description__is_visible: Boolean, triggers__description__owner__id: ID, triggers__description__source__id: ID, triggers__description__value: String, triggers__description__values: [String], triggers__ids: [ID], triggers__isnull: Boolean, triggers__name__is_protected: Boolean, triggers__name__is_visible: Boolean, triggers__name__owner__id: ID, triggers__name__source__id: ID, triggers__name__value: String, triggers__name__values: [String]): PaginatedCoreGroupAction! - CoreGroupTriggerRule(action__description__is_protected: Boolean, action__description__is_visible: Boolean, action__description__owner__id: ID, action__description__source__id: ID, action__description__value: String, action__description__values: [String], action__ids: [ID], action__isnull: Boolean, action__name__is_protected: Boolean, action__name__is_visible: Boolean, action__name__owner__id: ID, action__name__source__id: ID, action__name__value: String, action__name__values: [String], active__is_protected: Boolean, active__is_visible: Boolean, active__isnull: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group__description__is_protected: Boolean, group__description__is_visible: Boolean, group__description__owner__id: ID, group__description__source__id: ID, group__description__value: String, group__description__values: [String], group__group_type__is_protected: Boolean, group__group_type__is_visible: Boolean, group__group_type__owner__id: ID, group__group_type__source__id: ID, group__group_type__value: String, group__group_type__values: [String], group__ids: [ID], group__isnull: Boolean, group__label__is_protected: Boolean, group__label__is_visible: Boolean, group__label__owner__id: ID, group__label__source__id: ID, group__label__value: String, group__label__values: [String], group__name__is_protected: Boolean, group__name__is_visible: Boolean, group__name__owner__id: ID, group__name__source__id: ID, group__name__value: String, group__name__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], member_update__is_protected: Boolean, member_update__is_visible: Boolean, member_update__isnull: Boolean, member_update__owner__id: ID, member_update__source__id: ID, member_update__value: String, member_update__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGroupTriggerRule! - CoreIPAddressPool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], default_address_type__is_protected: Boolean, default_address_type__is_visible: Boolean, default_address_type__isnull: Boolean, default_address_type__owner__id: ID, default_address_type__source__id: ID, default_address_type__value: String, default_address_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__isnull: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, resources__broadcast_address__is_protected: Boolean, resources__broadcast_address__is_visible: Boolean, resources__broadcast_address__owner__id: ID, resources__broadcast_address__source__id: ID, resources__broadcast_address__value: String, resources__broadcast_address__values: [String], resources__description__is_protected: Boolean, resources__description__is_visible: Boolean, resources__description__owner__id: ID, resources__description__source__id: ID, resources__description__value: String, resources__description__values: [String], resources__hostmask__is_protected: Boolean, resources__hostmask__is_visible: Boolean, resources__hostmask__owner__id: ID, resources__hostmask__source__id: ID, resources__hostmask__value: String, resources__hostmask__values: [String], resources__ids: [ID], resources__is_pool__is_protected: Boolean, resources__is_pool__is_visible: Boolean, resources__is_pool__owner__id: ID, resources__is_pool__source__id: ID, resources__is_pool__value: Boolean, resources__is_pool__values: [Boolean], resources__is_top_level__is_protected: Boolean, resources__is_top_level__is_visible: Boolean, resources__is_top_level__owner__id: ID, resources__is_top_level__source__id: ID, resources__is_top_level__value: Boolean, resources__is_top_level__values: [Boolean], resources__isnull: Boolean, resources__member_type__is_protected: Boolean, resources__member_type__is_visible: Boolean, resources__member_type__owner__id: ID, resources__member_type__source__id: ID, resources__member_type__value: String, resources__member_type__values: [String], resources__netmask__is_protected: Boolean, resources__netmask__is_visible: Boolean, resources__netmask__owner__id: ID, resources__netmask__source__id: ID, resources__netmask__value: String, resources__netmask__values: [String], resources__network_address__is_protected: Boolean, resources__network_address__is_visible: Boolean, resources__network_address__owner__id: ID, resources__network_address__source__id: ID, resources__network_address__value: String, resources__network_address__values: [String], resources__prefix__is_protected: Boolean, resources__prefix__is_visible: Boolean, resources__prefix__owner__id: ID, resources__prefix__source__id: ID, resources__prefix__value: String, resources__prefix__values: [String], resources__utilization__is_protected: Boolean, resources__utilization__is_visible: Boolean, resources__utilization__owner__id: ID, resources__utilization__source__id: ID, resources__utilization__value: BigInt, resources__utilization__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreIPAddressPool! - CoreIPPrefixPool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], default_member_type__is_protected: Boolean, default_member_type__is_visible: Boolean, default_member_type__isnull: Boolean, default_member_type__owner__id: ID, default_member_type__source__id: ID, default_member_type__value: String, default_member_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__isnull: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], default_prefix_type__is_protected: Boolean, default_prefix_type__is_visible: Boolean, default_prefix_type__isnull: Boolean, default_prefix_type__owner__id: ID, default_prefix_type__source__id: ID, default_prefix_type__value: String, default_prefix_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, resources__broadcast_address__is_protected: Boolean, resources__broadcast_address__is_visible: Boolean, resources__broadcast_address__owner__id: ID, resources__broadcast_address__source__id: ID, resources__broadcast_address__value: String, resources__broadcast_address__values: [String], resources__description__is_protected: Boolean, resources__description__is_visible: Boolean, resources__description__owner__id: ID, resources__description__source__id: ID, resources__description__value: String, resources__description__values: [String], resources__hostmask__is_protected: Boolean, resources__hostmask__is_visible: Boolean, resources__hostmask__owner__id: ID, resources__hostmask__source__id: ID, resources__hostmask__value: String, resources__hostmask__values: [String], resources__ids: [ID], resources__is_pool__is_protected: Boolean, resources__is_pool__is_visible: Boolean, resources__is_pool__owner__id: ID, resources__is_pool__source__id: ID, resources__is_pool__value: Boolean, resources__is_pool__values: [Boolean], resources__is_top_level__is_protected: Boolean, resources__is_top_level__is_visible: Boolean, resources__is_top_level__owner__id: ID, resources__is_top_level__source__id: ID, resources__is_top_level__value: Boolean, resources__is_top_level__values: [Boolean], resources__isnull: Boolean, resources__member_type__is_protected: Boolean, resources__member_type__is_visible: Boolean, resources__member_type__owner__id: ID, resources__member_type__source__id: ID, resources__member_type__value: String, resources__member_type__values: [String], resources__netmask__is_protected: Boolean, resources__netmask__is_visible: Boolean, resources__netmask__owner__id: ID, resources__netmask__source__id: ID, resources__netmask__value: String, resources__netmask__values: [String], resources__network_address__is_protected: Boolean, resources__network_address__is_visible: Boolean, resources__network_address__owner__id: ID, resources__network_address__source__id: ID, resources__network_address__value: String, resources__network_address__values: [String], resources__prefix__is_protected: Boolean, resources__prefix__is_visible: Boolean, resources__prefix__owner__id: ID, resources__prefix__source__id: ID, resources__prefix__value: String, resources__prefix__values: [String], resources__utilization__is_protected: Boolean, resources__utilization__is_visible: Boolean, resources__utilization__owner__id: ID, resources__utilization__source__id: ID, resources__utilization__value: BigInt, resources__utilization__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreIPPrefixPool! - CoreMenu(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__icon__is_protected: Boolean, children__icon__is_visible: Boolean, children__icon__owner__id: ID, children__icon__source__id: ID, children__icon__value: String, children__icon__values: [String], children__ids: [ID], children__isnull: Boolean, children__kind__is_protected: Boolean, children__kind__is_visible: Boolean, children__kind__owner__id: ID, children__kind__source__id: ID, children__kind__value: String, children__kind__values: [String], children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], children__namespace__is_protected: Boolean, children__namespace__is_visible: Boolean, children__namespace__owner__id: ID, children__namespace__source__id: ID, children__namespace__value: String, children__namespace__values: [String], children__order_weight__is_protected: Boolean, children__order_weight__is_visible: Boolean, children__order_weight__owner__id: ID, children__order_weight__source__id: ID, children__order_weight__value: BigInt, children__order_weight__values: [BigInt], children__path__is_protected: Boolean, children__path__is_visible: Boolean, children__path__owner__id: ID, children__path__source__id: ID, children__path__value: String, children__path__values: [String], children__protected__is_protected: Boolean, children__protected__is_visible: Boolean, children__protected__owner__id: ID, children__protected__source__id: ID, children__protected__value: Boolean, children__protected__values: [Boolean], children__required_permissions__is_protected: Boolean, children__required_permissions__is_visible: Boolean, children__required_permissions__owner__id: ID, children__required_permissions__source__id: ID, children__required_permissions__value: GenericScalar, children__required_permissions__values: [GenericScalar], children__section__is_protected: Boolean, children__section__is_visible: Boolean, children__section__owner__id: ID, children__section__source__id: ID, children__section__value: String, children__section__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__isnull: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__isnull: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__isnull: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__icon__is_protected: Boolean, parent__icon__is_visible: Boolean, parent__icon__owner__id: ID, parent__icon__source__id: ID, parent__icon__value: String, parent__icon__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__kind__is_protected: Boolean, parent__kind__is_visible: Boolean, parent__kind__owner__id: ID, parent__kind__source__id: ID, parent__kind__value: String, parent__kind__values: [String], parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], parent__namespace__is_protected: Boolean, parent__namespace__is_visible: Boolean, parent__namespace__owner__id: ID, parent__namespace__source__id: ID, parent__namespace__value: String, parent__namespace__values: [String], parent__order_weight__is_protected: Boolean, parent__order_weight__is_visible: Boolean, parent__order_weight__owner__id: ID, parent__order_weight__source__id: ID, parent__order_weight__value: BigInt, parent__order_weight__values: [BigInt], parent__path__is_protected: Boolean, parent__path__is_visible: Boolean, parent__path__owner__id: ID, parent__path__source__id: ID, parent__path__value: String, parent__path__values: [String], parent__protected__is_protected: Boolean, parent__protected__is_visible: Boolean, parent__protected__owner__id: ID, parent__protected__source__id: ID, parent__protected__value: Boolean, parent__protected__values: [Boolean], parent__required_permissions__is_protected: Boolean, parent__required_permissions__is_visible: Boolean, parent__required_permissions__owner__id: ID, parent__required_permissions__source__id: ID, parent__required_permissions__value: GenericScalar, parent__required_permissions__values: [GenericScalar], parent__section__is_protected: Boolean, parent__section__is_visible: Boolean, parent__section__owner__id: ID, parent__section__source__id: ID, parent__section__value: String, parent__section__values: [String], partial_match: Boolean, path__is_protected: Boolean, path__is_visible: Boolean, path__isnull: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__isnull: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__isnull: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__isnull: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreMenu! - CoreMenuItem(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__icon__is_protected: Boolean, children__icon__is_visible: Boolean, children__icon__owner__id: ID, children__icon__source__id: ID, children__icon__value: String, children__icon__values: [String], children__ids: [ID], children__isnull: Boolean, children__kind__is_protected: Boolean, children__kind__is_visible: Boolean, children__kind__owner__id: ID, children__kind__source__id: ID, children__kind__value: String, children__kind__values: [String], children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], children__namespace__is_protected: Boolean, children__namespace__is_visible: Boolean, children__namespace__owner__id: ID, children__namespace__source__id: ID, children__namespace__value: String, children__namespace__values: [String], children__order_weight__is_protected: Boolean, children__order_weight__is_visible: Boolean, children__order_weight__owner__id: ID, children__order_weight__source__id: ID, children__order_weight__value: BigInt, children__order_weight__values: [BigInt], children__path__is_protected: Boolean, children__path__is_visible: Boolean, children__path__owner__id: ID, children__path__source__id: ID, children__path__value: String, children__path__values: [String], children__protected__is_protected: Boolean, children__protected__is_visible: Boolean, children__protected__owner__id: ID, children__protected__source__id: ID, children__protected__value: Boolean, children__protected__values: [Boolean], children__required_permissions__is_protected: Boolean, children__required_permissions__is_visible: Boolean, children__required_permissions__owner__id: ID, children__required_permissions__source__id: ID, children__required_permissions__value: GenericScalar, children__required_permissions__values: [GenericScalar], children__section__is_protected: Boolean, children__section__is_visible: Boolean, children__section__owner__id: ID, children__section__source__id: ID, children__section__value: String, children__section__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__isnull: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__isnull: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__isnull: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__icon__is_protected: Boolean, parent__icon__is_visible: Boolean, parent__icon__owner__id: ID, parent__icon__source__id: ID, parent__icon__value: String, parent__icon__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__kind__is_protected: Boolean, parent__kind__is_visible: Boolean, parent__kind__owner__id: ID, parent__kind__source__id: ID, parent__kind__value: String, parent__kind__values: [String], parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], parent__namespace__is_protected: Boolean, parent__namespace__is_visible: Boolean, parent__namespace__owner__id: ID, parent__namespace__source__id: ID, parent__namespace__value: String, parent__namespace__values: [String], parent__order_weight__is_protected: Boolean, parent__order_weight__is_visible: Boolean, parent__order_weight__owner__id: ID, parent__order_weight__source__id: ID, parent__order_weight__value: BigInt, parent__order_weight__values: [BigInt], parent__path__is_protected: Boolean, parent__path__is_visible: Boolean, parent__path__owner__id: ID, parent__path__source__id: ID, parent__path__value: String, parent__path__values: [String], parent__protected__is_protected: Boolean, parent__protected__is_visible: Boolean, parent__protected__owner__id: ID, parent__protected__source__id: ID, parent__protected__value: Boolean, parent__protected__values: [Boolean], parent__required_permissions__is_protected: Boolean, parent__required_permissions__is_visible: Boolean, parent__required_permissions__owner__id: ID, parent__required_permissions__source__id: ID, parent__required_permissions__value: GenericScalar, parent__required_permissions__values: [GenericScalar], parent__section__is_protected: Boolean, parent__section__is_visible: Boolean, parent__section__owner__id: ID, parent__section__source__id: ID, parent__section__value: String, parent__section__values: [String], partial_match: Boolean, path__is_protected: Boolean, path__is_visible: Boolean, path__isnull: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__isnull: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__isnull: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__isnull: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreMenuItem! - CoreNode(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreNode! - CoreNodeTriggerAttributeMatch(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], attribute_name__is_protected: Boolean, attribute_name__is_visible: Boolean, attribute_name__isnull: Boolean, attribute_name__owner__id: ID, attribute_name__source__id: ID, attribute_name__value: String, attribute_name__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], trigger__active__is_protected: Boolean, trigger__active__is_visible: Boolean, trigger__active__owner__id: ID, trigger__active__source__id: ID, trigger__active__value: Boolean, trigger__active__values: [Boolean], trigger__branch_scope__is_protected: Boolean, trigger__branch_scope__is_visible: Boolean, trigger__branch_scope__owner__id: ID, trigger__branch_scope__source__id: ID, trigger__branch_scope__value: String, trigger__branch_scope__values: [String], trigger__description__is_protected: Boolean, trigger__description__is_visible: Boolean, trigger__description__owner__id: ID, trigger__description__source__id: ID, trigger__description__value: String, trigger__description__values: [String], trigger__ids: [ID], trigger__isnull: Boolean, trigger__mutation_action__is_protected: Boolean, trigger__mutation_action__is_visible: Boolean, trigger__mutation_action__owner__id: ID, trigger__mutation_action__source__id: ID, trigger__mutation_action__value: String, trigger__mutation_action__values: [String], trigger__name__is_protected: Boolean, trigger__name__is_visible: Boolean, trigger__name__owner__id: ID, trigger__name__source__id: ID, trigger__name__value: String, trigger__name__values: [String], trigger__node_kind__is_protected: Boolean, trigger__node_kind__is_visible: Boolean, trigger__node_kind__owner__id: ID, trigger__node_kind__source__id: ID, trigger__node_kind__value: String, trigger__node_kind__values: [String], value__is_protected: Boolean, value__is_visible: Boolean, value__isnull: Boolean, value__owner__id: ID, value__source__id: ID, value__value: String, value__values: [String], value_match__is_protected: Boolean, value_match__is_visible: Boolean, value_match__isnull: Boolean, value_match__owner__id: ID, value_match__source__id: ID, value_match__value: String, value_match__values: [String], value_previous__is_protected: Boolean, value_previous__is_visible: Boolean, value_previous__isnull: Boolean, value_previous__owner__id: ID, value_previous__source__id: ID, value_previous__value: String, value_previous__values: [String]): PaginatedCoreNodeTriggerAttributeMatch! - CoreNodeTriggerMatch(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], trigger__active__is_protected: Boolean, trigger__active__is_visible: Boolean, trigger__active__owner__id: ID, trigger__active__source__id: ID, trigger__active__value: Boolean, trigger__active__values: [Boolean], trigger__branch_scope__is_protected: Boolean, trigger__branch_scope__is_visible: Boolean, trigger__branch_scope__owner__id: ID, trigger__branch_scope__source__id: ID, trigger__branch_scope__value: String, trigger__branch_scope__values: [String], trigger__description__is_protected: Boolean, trigger__description__is_visible: Boolean, trigger__description__owner__id: ID, trigger__description__source__id: ID, trigger__description__value: String, trigger__description__values: [String], trigger__ids: [ID], trigger__isnull: Boolean, trigger__mutation_action__is_protected: Boolean, trigger__mutation_action__is_visible: Boolean, trigger__mutation_action__owner__id: ID, trigger__mutation_action__source__id: ID, trigger__mutation_action__value: String, trigger__mutation_action__values: [String], trigger__name__is_protected: Boolean, trigger__name__is_visible: Boolean, trigger__name__owner__id: ID, trigger__name__source__id: ID, trigger__name__value: String, trigger__name__values: [String], trigger__node_kind__is_protected: Boolean, trigger__node_kind__is_visible: Boolean, trigger__node_kind__owner__id: ID, trigger__node_kind__source__id: ID, trigger__node_kind__value: String, trigger__node_kind__values: [String]): PaginatedCoreNodeTriggerMatch! - CoreNodeTriggerRelationshipMatch(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], modification_type__is_protected: Boolean, modification_type__is_visible: Boolean, modification_type__isnull: Boolean, modification_type__owner__id: ID, modification_type__source__id: ID, modification_type__value: String, modification_type__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, peer__is_protected: Boolean, peer__is_visible: Boolean, peer__isnull: Boolean, peer__owner__id: ID, peer__source__id: ID, peer__value: String, peer__values: [String], relationship_name__is_protected: Boolean, relationship_name__is_visible: Boolean, relationship_name__isnull: Boolean, relationship_name__owner__id: ID, relationship_name__source__id: ID, relationship_name__value: String, relationship_name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], trigger__active__is_protected: Boolean, trigger__active__is_visible: Boolean, trigger__active__owner__id: ID, trigger__active__source__id: ID, trigger__active__value: Boolean, trigger__active__values: [Boolean], trigger__branch_scope__is_protected: Boolean, trigger__branch_scope__is_visible: Boolean, trigger__branch_scope__owner__id: ID, trigger__branch_scope__source__id: ID, trigger__branch_scope__value: String, trigger__branch_scope__values: [String], trigger__description__is_protected: Boolean, trigger__description__is_visible: Boolean, trigger__description__owner__id: ID, trigger__description__source__id: ID, trigger__description__value: String, trigger__description__values: [String], trigger__ids: [ID], trigger__isnull: Boolean, trigger__mutation_action__is_protected: Boolean, trigger__mutation_action__is_visible: Boolean, trigger__mutation_action__owner__id: ID, trigger__mutation_action__source__id: ID, trigger__mutation_action__value: String, trigger__mutation_action__values: [String], trigger__name__is_protected: Boolean, trigger__name__is_visible: Boolean, trigger__name__owner__id: ID, trigger__name__source__id: ID, trigger__name__value: String, trigger__name__values: [String], trigger__node_kind__is_protected: Boolean, trigger__node_kind__is_visible: Boolean, trigger__node_kind__owner__id: ID, trigger__node_kind__source__id: ID, trigger__node_kind__value: String, trigger__node_kind__values: [String]): PaginatedCoreNodeTriggerRelationshipMatch! - CoreNodeTriggerRule(action__description__is_protected: Boolean, action__description__is_visible: Boolean, action__description__owner__id: ID, action__description__source__id: ID, action__description__value: String, action__description__values: [String], action__ids: [ID], action__isnull: Boolean, action__name__is_protected: Boolean, action__name__is_visible: Boolean, action__name__owner__id: ID, action__name__source__id: ID, action__name__value: String, action__name__values: [String], active__is_protected: Boolean, active__is_visible: Boolean, active__isnull: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, matches__ids: [ID], matches__isnull: Boolean, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], mutation_action__is_protected: Boolean, mutation_action__is_visible: Boolean, mutation_action__isnull: Boolean, mutation_action__owner__id: ID, mutation_action__source__id: ID, mutation_action__value: String, mutation_action__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreNodeTriggerRule! - CoreNumberPool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], end_range__is_protected: Boolean, end_range__is_visible: Boolean, end_range__isnull: Boolean, end_range__owner__id: ID, end_range__source__id: ID, end_range__value: BigInt, end_range__values: [BigInt], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node__is_protected: Boolean, node__is_visible: Boolean, node__isnull: Boolean, node__owner__id: ID, node__source__id: ID, node__value: String, node__values: [String], node_attribute__is_protected: Boolean, node_attribute__is_visible: Boolean, node_attribute__isnull: Boolean, node_attribute__owner__id: ID, node_attribute__source__id: ID, node_attribute__value: String, node_attribute__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, pool_type__is_protected: Boolean, pool_type__is_visible: Boolean, pool_type__isnull: Boolean, pool_type__owner__id: ID, pool_type__source__id: ID, pool_type__value: String, pool_type__values: [String], start_range__is_protected: Boolean, start_range__is_visible: Boolean, start_range__isnull: Boolean, start_range__owner__id: ID, start_range__source__id: ID, start_range__value: BigInt, start_range__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreNumberPool! - CoreObjectComponentTemplate(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], template_name__is_protected: Boolean, template_name__is_visible: Boolean, template_name__isnull: Boolean, template_name__owner__id: ID, template_name__source__id: ID, template_name__value: String, template_name__values: [String]): PaginatedCoreObjectComponentTemplate! - CoreObjectPermission(action__is_protected: Boolean, action__is_visible: Boolean, action__isnull: Boolean, action__owner__id: ID, action__source__id: ID, action__value: String, action__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], decision__is_protected: Boolean, decision__is_visible: Boolean, decision__isnull: Boolean, decision__owner__id: ID, decision__source__id: ID, decision__value: BigInt, decision__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__isnull: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__isnull: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreObjectPermission! - CoreObjectTemplate(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], template_name__is_protected: Boolean, template_name__is_visible: Boolean, template_name__isnull: Boolean, template_name__owner__id: ID, template_name__source__id: ID, template_name__value: String, template_name__values: [String]): PaginatedCoreObjectTemplate! - CoreObjectThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], object_path__is_protected: Boolean, object_path__is_visible: Boolean, object_path__isnull: Boolean, object_path__owner__id: ID, object_path__source__id: ID, object_path__value: String, object_path__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreObjectThread! - CorePasswordCredential(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, password__is_protected: Boolean, password__is_visible: Boolean, password__isnull: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], username__is_protected: Boolean, username__is_visible: Boolean, username__isnull: Boolean, username__owner__id: ID, username__source__id: ID, username__value: String, username__values: [String]): PaginatedCorePasswordCredential! - CoreProfile(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreProfile! - CoreProposedChange(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], approved_by__account_type__is_protected: Boolean, approved_by__account_type__is_visible: Boolean, approved_by__account_type__owner__id: ID, approved_by__account_type__source__id: ID, approved_by__account_type__value: String, approved_by__account_type__values: [String], approved_by__description__is_protected: Boolean, approved_by__description__is_visible: Boolean, approved_by__description__owner__id: ID, approved_by__description__source__id: ID, approved_by__description__value: String, approved_by__description__values: [String], approved_by__ids: [ID], approved_by__isnull: Boolean, approved_by__label__is_protected: Boolean, approved_by__label__is_visible: Boolean, approved_by__label__owner__id: ID, approved_by__label__source__id: ID, approved_by__label__value: String, approved_by__label__values: [String], approved_by__name__is_protected: Boolean, approved_by__name__is_visible: Boolean, approved_by__name__owner__id: ID, approved_by__name__source__id: ID, approved_by__name__value: String, approved_by__name__values: [String], approved_by__password__is_protected: Boolean, approved_by__password__is_visible: Boolean, approved_by__password__owner__id: ID, approved_by__password__source__id: ID, approved_by__password__value: String, approved_by__password__values: [String], approved_by__status__is_protected: Boolean, approved_by__status__is_visible: Boolean, approved_by__status__owner__id: ID, approved_by__status__source__id: ID, approved_by__status__value: String, approved_by__status__values: [String], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], destination_branch__is_protected: Boolean, destination_branch__is_visible: Boolean, destination_branch__isnull: Boolean, destination_branch__owner__id: ID, destination_branch__source__id: ID, destination_branch__value: String, destination_branch__values: [String], ids: [ID], is_draft__is_protected: Boolean, is_draft__is_visible: Boolean, is_draft__isnull: Boolean, is_draft__owner__id: ID, is_draft__source__id: ID, is_draft__value: Boolean, is_draft__values: [Boolean], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, rejected_by__account_type__is_protected: Boolean, rejected_by__account_type__is_visible: Boolean, rejected_by__account_type__owner__id: ID, rejected_by__account_type__source__id: ID, rejected_by__account_type__value: String, rejected_by__account_type__values: [String], rejected_by__description__is_protected: Boolean, rejected_by__description__is_visible: Boolean, rejected_by__description__owner__id: ID, rejected_by__description__source__id: ID, rejected_by__description__value: String, rejected_by__description__values: [String], rejected_by__ids: [ID], rejected_by__isnull: Boolean, rejected_by__label__is_protected: Boolean, rejected_by__label__is_visible: Boolean, rejected_by__label__owner__id: ID, rejected_by__label__source__id: ID, rejected_by__label__value: String, rejected_by__label__values: [String], rejected_by__name__is_protected: Boolean, rejected_by__name__is_visible: Boolean, rejected_by__name__owner__id: ID, rejected_by__name__source__id: ID, rejected_by__name__value: String, rejected_by__name__values: [String], rejected_by__password__is_protected: Boolean, rejected_by__password__is_visible: Boolean, rejected_by__password__owner__id: ID, rejected_by__password__source__id: ID, rejected_by__password__value: String, rejected_by__password__values: [String], rejected_by__status__is_protected: Boolean, rejected_by__status__is_visible: Boolean, rejected_by__status__owner__id: ID, rejected_by__status__source__id: ID, rejected_by__status__value: String, rejected_by__status__values: [String], reviewers__account_type__is_protected: Boolean, reviewers__account_type__is_visible: Boolean, reviewers__account_type__owner__id: ID, reviewers__account_type__source__id: ID, reviewers__account_type__value: String, reviewers__account_type__values: [String], reviewers__description__is_protected: Boolean, reviewers__description__is_visible: Boolean, reviewers__description__owner__id: ID, reviewers__description__source__id: ID, reviewers__description__value: String, reviewers__description__values: [String], reviewers__ids: [ID], reviewers__isnull: Boolean, reviewers__label__is_protected: Boolean, reviewers__label__is_visible: Boolean, reviewers__label__owner__id: ID, reviewers__label__source__id: ID, reviewers__label__value: String, reviewers__label__values: [String], reviewers__name__is_protected: Boolean, reviewers__name__is_visible: Boolean, reviewers__name__owner__id: ID, reviewers__name__source__id: ID, reviewers__name__value: String, reviewers__name__values: [String], reviewers__password__is_protected: Boolean, reviewers__password__is_visible: Boolean, reviewers__password__owner__id: ID, reviewers__password__source__id: ID, reviewers__password__value: String, reviewers__password__values: [String], reviewers__status__is_protected: Boolean, reviewers__status__is_visible: Boolean, reviewers__status__owner__id: ID, reviewers__status__source__id: ID, reviewers__status__value: String, reviewers__status__values: [String], source_branch__is_protected: Boolean, source_branch__is_visible: Boolean, source_branch__isnull: Boolean, source_branch__owner__id: ID, source_branch__source__id: ID, source_branch__value: String, source_branch__values: [String], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], threads__created_at__is_protected: Boolean, threads__created_at__is_visible: Boolean, threads__created_at__owner__id: ID, threads__created_at__source__id: ID, threads__created_at__value: DateTime, threads__created_at__values: [DateTime], threads__ids: [ID], threads__isnull: Boolean, threads__label__is_protected: Boolean, threads__label__is_visible: Boolean, threads__label__owner__id: ID, threads__label__source__id: ID, threads__label__value: String, threads__label__values: [String], threads__resolved__is_protected: Boolean, threads__resolved__is_visible: Boolean, threads__resolved__owner__id: ID, threads__resolved__source__id: ID, threads__resolved__value: Boolean, threads__resolved__values: [Boolean], total_comments__is_protected: Boolean, total_comments__is_visible: Boolean, total_comments__isnull: Boolean, total_comments__owner__id: ID, total_comments__source__id: ID, total_comments__value: BigInt, total_comments__values: [BigInt], validations__completed_at__is_protected: Boolean, validations__completed_at__is_visible: Boolean, validations__completed_at__owner__id: ID, validations__completed_at__source__id: ID, validations__completed_at__value: DateTime, validations__completed_at__values: [DateTime], validations__conclusion__is_protected: Boolean, validations__conclusion__is_visible: Boolean, validations__conclusion__owner__id: ID, validations__conclusion__source__id: ID, validations__conclusion__value: String, validations__conclusion__values: [String], validations__ids: [ID], validations__isnull: Boolean, validations__label__is_protected: Boolean, validations__label__is_visible: Boolean, validations__label__owner__id: ID, validations__label__source__id: ID, validations__label__value: String, validations__label__values: [String], validations__started_at__is_protected: Boolean, validations__started_at__is_visible: Boolean, validations__started_at__owner__id: ID, validations__started_at__source__id: ID, validations__started_at__value: DateTime, validations__started_at__values: [DateTime], validations__state__is_protected: Boolean, validations__state__is_visible: Boolean, validations__state__owner__id: ID, validations__state__source__id: ID, validations__state__value: String, validations__state__values: [String]): PaginatedCoreProposedChange! + BuiltinIPAddress(address__is_protected: Boolean, address__is_visible: Boolean, address__isnull: Boolean, address__owner__id: ID, address__source__id: ID, address__value: String, address__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], ids: [ID], include_available: Boolean, ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], ip_prefix__broadcast_address__is_protected: Boolean, ip_prefix__broadcast_address__is_visible: Boolean, ip_prefix__broadcast_address__owner__id: ID, ip_prefix__broadcast_address__source__id: ID, ip_prefix__broadcast_address__value: String, ip_prefix__broadcast_address__values: [String], ip_prefix__description__is_protected: Boolean, ip_prefix__description__is_visible: Boolean, ip_prefix__description__owner__id: ID, ip_prefix__description__source__id: ID, ip_prefix__description__value: String, ip_prefix__description__values: [String], ip_prefix__hostmask__is_protected: Boolean, ip_prefix__hostmask__is_visible: Boolean, ip_prefix__hostmask__owner__id: ID, ip_prefix__hostmask__source__id: ID, ip_prefix__hostmask__value: String, ip_prefix__hostmask__values: [String], ip_prefix__ids: [ID], ip_prefix__is_pool__is_protected: Boolean, ip_prefix__is_pool__is_visible: Boolean, ip_prefix__is_pool__owner__id: ID, ip_prefix__is_pool__source__id: ID, ip_prefix__is_pool__value: Boolean, ip_prefix__is_pool__values: [Boolean], ip_prefix__is_top_level__is_protected: Boolean, ip_prefix__is_top_level__is_visible: Boolean, ip_prefix__is_top_level__owner__id: ID, ip_prefix__is_top_level__source__id: ID, ip_prefix__is_top_level__value: Boolean, ip_prefix__is_top_level__values: [Boolean], ip_prefix__isnull: Boolean, ip_prefix__member_type__is_protected: Boolean, ip_prefix__member_type__is_visible: Boolean, ip_prefix__member_type__owner__id: ID, ip_prefix__member_type__source__id: ID, ip_prefix__member_type__value: String, ip_prefix__member_type__values: [String], ip_prefix__netmask__is_protected: Boolean, ip_prefix__netmask__is_visible: Boolean, ip_prefix__netmask__owner__id: ID, ip_prefix__netmask__source__id: ID, ip_prefix__netmask__value: String, ip_prefix__netmask__values: [String], ip_prefix__network_address__is_protected: Boolean, ip_prefix__network_address__is_visible: Boolean, ip_prefix__network_address__owner__id: ID, ip_prefix__network_address__source__id: ID, ip_prefix__network_address__value: String, ip_prefix__network_address__values: [String], ip_prefix__prefix__is_protected: Boolean, ip_prefix__prefix__is_visible: Boolean, ip_prefix__prefix__owner__id: ID, ip_prefix__prefix__source__id: ID, ip_prefix__prefix__value: String, ip_prefix__prefix__values: [String], ip_prefix__utilization__is_protected: Boolean, ip_prefix__utilization__is_visible: Boolean, ip_prefix__utilization__owner__id: ID, ip_prefix__utilization__source__id: ID, ip_prefix__utilization__value: BigInt, ip_prefix__utilization__values: [BigInt], kinds: [String!], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedBuiltinIPAddress! + BuiltinIPNamespace(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_addresses__address__is_protected: Boolean, ip_addresses__address__is_visible: Boolean, ip_addresses__address__owner__id: ID, ip_addresses__address__source__id: ID, ip_addresses__address__value: String, ip_addresses__address__values: [String], ip_addresses__description__is_protected: Boolean, ip_addresses__description__is_visible: Boolean, ip_addresses__description__owner__id: ID, ip_addresses__description__source__id: ID, ip_addresses__description__value: String, ip_addresses__description__values: [String], ip_addresses__ids: [ID], ip_addresses__isnull: Boolean, ip_prefixes__broadcast_address__is_protected: Boolean, ip_prefixes__broadcast_address__is_visible: Boolean, ip_prefixes__broadcast_address__owner__id: ID, ip_prefixes__broadcast_address__source__id: ID, ip_prefixes__broadcast_address__value: String, ip_prefixes__broadcast_address__values: [String], ip_prefixes__description__is_protected: Boolean, ip_prefixes__description__is_visible: Boolean, ip_prefixes__description__owner__id: ID, ip_prefixes__description__source__id: ID, ip_prefixes__description__value: String, ip_prefixes__description__values: [String], ip_prefixes__hostmask__is_protected: Boolean, ip_prefixes__hostmask__is_visible: Boolean, ip_prefixes__hostmask__owner__id: ID, ip_prefixes__hostmask__source__id: ID, ip_prefixes__hostmask__value: String, ip_prefixes__hostmask__values: [String], ip_prefixes__ids: [ID], ip_prefixes__is_pool__is_protected: Boolean, ip_prefixes__is_pool__is_visible: Boolean, ip_prefixes__is_pool__owner__id: ID, ip_prefixes__is_pool__source__id: ID, ip_prefixes__is_pool__value: Boolean, ip_prefixes__is_pool__values: [Boolean], ip_prefixes__is_top_level__is_protected: Boolean, ip_prefixes__is_top_level__is_visible: Boolean, ip_prefixes__is_top_level__owner__id: ID, ip_prefixes__is_top_level__source__id: ID, ip_prefixes__is_top_level__value: Boolean, ip_prefixes__is_top_level__values: [Boolean], ip_prefixes__isnull: Boolean, ip_prefixes__member_type__is_protected: Boolean, ip_prefixes__member_type__is_visible: Boolean, ip_prefixes__member_type__owner__id: ID, ip_prefixes__member_type__source__id: ID, ip_prefixes__member_type__value: String, ip_prefixes__member_type__values: [String], ip_prefixes__netmask__is_protected: Boolean, ip_prefixes__netmask__is_visible: Boolean, ip_prefixes__netmask__owner__id: ID, ip_prefixes__netmask__source__id: ID, ip_prefixes__netmask__value: String, ip_prefixes__netmask__values: [String], ip_prefixes__network_address__is_protected: Boolean, ip_prefixes__network_address__is_visible: Boolean, ip_prefixes__network_address__owner__id: ID, ip_prefixes__network_address__source__id: ID, ip_prefixes__network_address__value: String, ip_prefixes__network_address__values: [String], ip_prefixes__prefix__is_protected: Boolean, ip_prefixes__prefix__is_visible: Boolean, ip_prefixes__prefix__owner__id: ID, ip_prefixes__prefix__source__id: ID, ip_prefixes__prefix__value: String, ip_prefixes__prefix__values: [String], ip_prefixes__utilization__is_protected: Boolean, ip_prefixes__utilization__is_visible: Boolean, ip_prefixes__utilization__owner__id: ID, ip_prefixes__utilization__source__id: ID, ip_prefixes__utilization__value: BigInt, ip_prefixes__utilization__values: [BigInt], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedBuiltinIPNamespace! + BuiltinIPPrefix(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], broadcast_address__is_protected: Boolean, broadcast_address__is_visible: Boolean, broadcast_address__isnull: Boolean, broadcast_address__owner__id: ID, broadcast_address__source__id: ID, broadcast_address__value: String, broadcast_address__values: [String], children__broadcast_address__is_protected: Boolean, children__broadcast_address__is_visible: Boolean, children__broadcast_address__owner__id: ID, children__broadcast_address__source__id: ID, children__broadcast_address__value: String, children__broadcast_address__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__hostmask__is_protected: Boolean, children__hostmask__is_visible: Boolean, children__hostmask__owner__id: ID, children__hostmask__source__id: ID, children__hostmask__value: String, children__hostmask__values: [String], children__ids: [ID], children__is_pool__is_protected: Boolean, children__is_pool__is_visible: Boolean, children__is_pool__owner__id: ID, children__is_pool__source__id: ID, children__is_pool__value: Boolean, children__is_pool__values: [Boolean], children__is_top_level__is_protected: Boolean, children__is_top_level__is_visible: Boolean, children__is_top_level__owner__id: ID, children__is_top_level__source__id: ID, children__is_top_level__value: Boolean, children__is_top_level__values: [Boolean], children__isnull: Boolean, children__member_type__is_protected: Boolean, children__member_type__is_visible: Boolean, children__member_type__owner__id: ID, children__member_type__source__id: ID, children__member_type__value: String, children__member_type__values: [String], children__netmask__is_protected: Boolean, children__netmask__is_visible: Boolean, children__netmask__owner__id: ID, children__netmask__source__id: ID, children__netmask__value: String, children__netmask__values: [String], children__network_address__is_protected: Boolean, children__network_address__is_visible: Boolean, children__network_address__owner__id: ID, children__network_address__source__id: ID, children__network_address__value: String, children__network_address__values: [String], children__prefix__is_protected: Boolean, children__prefix__is_visible: Boolean, children__prefix__owner__id: ID, children__prefix__source__id: ID, children__prefix__value: String, children__prefix__values: [String], children__utilization__is_protected: Boolean, children__utilization__is_visible: Boolean, children__utilization__owner__id: ID, children__utilization__source__id: ID, children__utilization__value: BigInt, children__utilization__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hostmask__is_protected: Boolean, hostmask__is_visible: Boolean, hostmask__isnull: Boolean, hostmask__owner__id: ID, hostmask__source__id: ID, hostmask__value: String, hostmask__values: [String], ids: [ID], include_available: Boolean, ip_addresses__address__is_protected: Boolean, ip_addresses__address__is_visible: Boolean, ip_addresses__address__owner__id: ID, ip_addresses__address__source__id: ID, ip_addresses__address__value: String, ip_addresses__address__values: [String], ip_addresses__description__is_protected: Boolean, ip_addresses__description__is_visible: Boolean, ip_addresses__description__owner__id: ID, ip_addresses__description__source__id: ID, ip_addresses__description__value: String, ip_addresses__description__values: [String], ip_addresses__ids: [ID], ip_addresses__isnull: Boolean, ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__isnull: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], is_top_level__is_protected: Boolean, is_top_level__is_visible: Boolean, is_top_level__isnull: Boolean, is_top_level__owner__id: ID, is_top_level__source__id: ID, is_top_level__value: Boolean, is_top_level__values: [Boolean], kinds: [String!], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__isnull: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], netmask__is_protected: Boolean, netmask__is_visible: Boolean, netmask__isnull: Boolean, netmask__owner__id: ID, netmask__source__id: ID, netmask__value: String, netmask__values: [String], network_address__is_protected: Boolean, network_address__is_visible: Boolean, network_address__isnull: Boolean, network_address__owner__id: ID, network_address__source__id: ID, network_address__value: String, network_address__values: [String], offset: NonNegativeInt, order: OrderInput, parent__broadcast_address__is_protected: Boolean, parent__broadcast_address__is_visible: Boolean, parent__broadcast_address__owner__id: ID, parent__broadcast_address__source__id: ID, parent__broadcast_address__value: String, parent__broadcast_address__values: [String], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__hostmask__is_protected: Boolean, parent__hostmask__is_visible: Boolean, parent__hostmask__owner__id: ID, parent__hostmask__source__id: ID, parent__hostmask__value: String, parent__hostmask__values: [String], parent__ids: [ID], parent__is_pool__is_protected: Boolean, parent__is_pool__is_visible: Boolean, parent__is_pool__owner__id: ID, parent__is_pool__source__id: ID, parent__is_pool__value: Boolean, parent__is_pool__values: [Boolean], parent__is_top_level__is_protected: Boolean, parent__is_top_level__is_visible: Boolean, parent__is_top_level__owner__id: ID, parent__is_top_level__source__id: ID, parent__is_top_level__value: Boolean, parent__is_top_level__values: [Boolean], parent__isnull: Boolean, parent__member_type__is_protected: Boolean, parent__member_type__is_visible: Boolean, parent__member_type__owner__id: ID, parent__member_type__source__id: ID, parent__member_type__value: String, parent__member_type__values: [String], parent__netmask__is_protected: Boolean, parent__netmask__is_visible: Boolean, parent__netmask__owner__id: ID, parent__netmask__source__id: ID, parent__netmask__value: String, parent__netmask__values: [String], parent__network_address__is_protected: Boolean, parent__network_address__is_visible: Boolean, parent__network_address__owner__id: ID, parent__network_address__source__id: ID, parent__network_address__value: String, parent__network_address__values: [String], parent__prefix__is_protected: Boolean, parent__prefix__is_visible: Boolean, parent__prefix__owner__id: ID, parent__prefix__source__id: ID, parent__prefix__value: String, parent__prefix__values: [String], parent__utilization__is_protected: Boolean, parent__utilization__is_visible: Boolean, parent__utilization__owner__id: ID, parent__utilization__source__id: ID, parent__utilization__value: BigInt, parent__utilization__values: [BigInt], partial_match: Boolean, prefix__is_protected: Boolean, prefix__is_visible: Boolean, prefix__isnull: Boolean, prefix__owner__id: ID, prefix__source__id: ID, prefix__value: String, prefix__values: [String], profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], resource_pool__default_address_type__is_protected: Boolean, resource_pool__default_address_type__is_visible: Boolean, resource_pool__default_address_type__owner__id: ID, resource_pool__default_address_type__source__id: ID, resource_pool__default_address_type__value: String, resource_pool__default_address_type__values: [String], resource_pool__default_prefix_length__is_protected: Boolean, resource_pool__default_prefix_length__is_visible: Boolean, resource_pool__default_prefix_length__owner__id: ID, resource_pool__default_prefix_length__source__id: ID, resource_pool__default_prefix_length__value: BigInt, resource_pool__default_prefix_length__values: [BigInt], resource_pool__description__is_protected: Boolean, resource_pool__description__is_visible: Boolean, resource_pool__description__owner__id: ID, resource_pool__description__source__id: ID, resource_pool__description__value: String, resource_pool__description__values: [String], resource_pool__ids: [ID], resource_pool__isnull: Boolean, resource_pool__name__is_protected: Boolean, resource_pool__name__is_visible: Boolean, resource_pool__name__owner__id: ID, resource_pool__name__source__id: ID, resource_pool__name__value: String, resource_pool__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], utilization__is_protected: Boolean, utilization__is_visible: Boolean, utilization__isnull: Boolean, utilization__owner__id: ID, utilization__source__id: ID, utilization__value: BigInt, utilization__values: [BigInt]): PaginatedBuiltinIPPrefix! + BuiltinTag(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedBuiltinTag! + CoreAccount(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__isnull: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, password__is_protected: Boolean, password__is_visible: Boolean, password__isnull: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreAccount! + CoreAccountGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreAccountGroup! + CoreAccountRole(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], groups__description__is_protected: Boolean, groups__description__is_visible: Boolean, groups__description__owner__id: ID, groups__description__source__id: ID, groups__description__value: String, groups__description__values: [String], groups__group_type__is_protected: Boolean, groups__group_type__is_visible: Boolean, groups__group_type__owner__id: ID, groups__group_type__source__id: ID, groups__group_type__value: String, groups__group_type__values: [String], groups__ids: [ID], groups__isnull: Boolean, groups__label__is_protected: Boolean, groups__label__is_visible: Boolean, groups__label__owner__id: ID, groups__label__source__id: ID, groups__label__value: String, groups__label__values: [String], groups__name__is_protected: Boolean, groups__name__is_visible: Boolean, groups__name__owner__id: ID, groups__name__source__id: ID, groups__name__value: String, groups__name__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, permissions__description__is_protected: Boolean, permissions__description__is_visible: Boolean, permissions__description__owner__id: ID, permissions__description__source__id: ID, permissions__description__value: String, permissions__description__values: [String], permissions__identifier__is_protected: Boolean, permissions__identifier__is_visible: Boolean, permissions__identifier__owner__id: ID, permissions__identifier__source__id: ID, permissions__identifier__value: String, permissions__identifier__values: [String], permissions__ids: [ID], permissions__isnull: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreAccountRole! + CoreAction(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], triggers__active__is_protected: Boolean, triggers__active__is_visible: Boolean, triggers__active__owner__id: ID, triggers__active__source__id: ID, triggers__active__value: Boolean, triggers__active__values: [Boolean], triggers__branch_scope__is_protected: Boolean, triggers__branch_scope__is_visible: Boolean, triggers__branch_scope__owner__id: ID, triggers__branch_scope__source__id: ID, triggers__branch_scope__value: String, triggers__branch_scope__values: [String], triggers__description__is_protected: Boolean, triggers__description__is_visible: Boolean, triggers__description__owner__id: ID, triggers__description__source__id: ID, triggers__description__value: String, triggers__description__values: [String], triggers__ids: [ID], triggers__isnull: Boolean, triggers__name__is_protected: Boolean, triggers__name__is_visible: Boolean, triggers__name__owner__id: ID, triggers__name__source__id: ID, triggers__name__value: String, triggers__name__values: [String]): PaginatedCoreAction! + CoreArtifact(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checksum__is_protected: Boolean, checksum__is_visible: Boolean, checksum__isnull: Boolean, checksum__owner__id: ID, checksum__source__id: ID, checksum__value: String, checksum__values: [String], content_type__is_protected: Boolean, content_type__is_visible: Boolean, content_type__isnull: Boolean, content_type__owner__id: ID, content_type__source__id: ID, content_type__value: String, content_type__values: [String], definition__artifact_name__is_protected: Boolean, definition__artifact_name__is_visible: Boolean, definition__artifact_name__owner__id: ID, definition__artifact_name__source__id: ID, definition__artifact_name__value: String, definition__artifact_name__values: [String], definition__content_type__is_protected: Boolean, definition__content_type__is_visible: Boolean, definition__content_type__owner__id: ID, definition__content_type__source__id: ID, definition__content_type__value: String, definition__content_type__values: [String], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], object__ids: [ID], object__isnull: Boolean, offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__isnull: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifact! + CoreArtifactCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifact_id__is_protected: Boolean, artifact_id__is_visible: Boolean, artifact_id__isnull: Boolean, artifact_id__owner__id: ID, artifact_id__source__id: ID, artifact_id__value: String, artifact_id__values: [String], changed__is_protected: Boolean, changed__is_visible: Boolean, changed__isnull: Boolean, changed__owner__id: ID, changed__source__id: ID, changed__value: Boolean, changed__values: [Boolean], checksum__is_protected: Boolean, checksum__is_visible: Boolean, checksum__isnull: Boolean, checksum__owner__id: ID, checksum__source__id: ID, checksum__value: String, checksum__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, line_number__is_protected: Boolean, line_number__is_visible: Boolean, line_number__isnull: Boolean, line_number__owner__id: ID, line_number__source__id: ID, line_number__value: BigInt, line_number__values: [BigInt], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__isnull: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreArtifactCheck! + CoreArtifactDefinition(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifact_name__is_protected: Boolean, artifact_name__is_visible: Boolean, artifact_name__isnull: Boolean, artifact_name__owner__id: ID, artifact_name__source__id: ID, artifact_name__value: String, artifact_name__values: [String], content_type__is_protected: Boolean, content_type__is_visible: Boolean, content_type__isnull: Boolean, content_type__owner__id: ID, content_type__source__id: ID, content_type__value: String, content_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], targets__description__is_protected: Boolean, targets__description__is_visible: Boolean, targets__description__owner__id: ID, targets__description__source__id: ID, targets__description__value: String, targets__description__values: [String], targets__group_type__is_protected: Boolean, targets__group_type__is_visible: Boolean, targets__group_type__owner__id: ID, targets__group_type__source__id: ID, targets__group_type__value: String, targets__group_type__values: [String], targets__ids: [ID], targets__isnull: Boolean, targets__label__is_protected: Boolean, targets__label__is_visible: Boolean, targets__label__owner__id: ID, targets__label__source__id: ID, targets__label__value: String, targets__label__values: [String], targets__name__is_protected: Boolean, targets__name__is_visible: Boolean, targets__name__owner__id: ID, targets__name__source__id: ID, targets__name__value: String, targets__name__values: [String], transformation__description__is_protected: Boolean, transformation__description__is_visible: Boolean, transformation__description__owner__id: ID, transformation__description__source__id: ID, transformation__description__value: String, transformation__description__values: [String], transformation__ids: [ID], transformation__isnull: Boolean, transformation__label__is_protected: Boolean, transformation__label__is_visible: Boolean, transformation__label__owner__id: ID, transformation__label__source__id: ID, transformation__label__value: String, transformation__label__values: [String], transformation__name__is_protected: Boolean, transformation__name__is_visible: Boolean, transformation__name__owner__id: ID, transformation__name__source__id: ID, transformation__name__value: String, transformation__name__values: [String], transformation__timeout__is_protected: Boolean, transformation__timeout__is_visible: Boolean, transformation__timeout__owner__id: ID, transformation__timeout__source__id: ID, transformation__timeout__value: BigInt, transformation__timeout__values: [BigInt]): PaginatedCoreArtifactDefinition! + CoreArtifactTarget(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifacts__checksum__is_protected: Boolean, artifacts__checksum__is_visible: Boolean, artifacts__checksum__owner__id: ID, artifacts__checksum__source__id: ID, artifacts__checksum__value: String, artifacts__checksum__values: [String], artifacts__content_type__is_protected: Boolean, artifacts__content_type__is_visible: Boolean, artifacts__content_type__owner__id: ID, artifacts__content_type__source__id: ID, artifacts__content_type__value: String, artifacts__content_type__values: [String], artifacts__ids: [ID], artifacts__isnull: Boolean, artifacts__name__is_protected: Boolean, artifacts__name__is_visible: Boolean, artifacts__name__owner__id: ID, artifacts__name__source__id: ID, artifacts__name__value: String, artifacts__name__values: [String], artifacts__parameters__is_protected: Boolean, artifacts__parameters__is_visible: Boolean, artifacts__parameters__owner__id: ID, artifacts__parameters__source__id: ID, artifacts__parameters__value: GenericScalar, artifacts__parameters__values: [GenericScalar], artifacts__status__is_protected: Boolean, artifacts__status__is_visible: Boolean, artifacts__status__owner__id: ID, artifacts__status__source__id: ID, artifacts__status__value: String, artifacts__status__values: [String], artifacts__storage_id__is_protected: Boolean, artifacts__storage_id__is_visible: Boolean, artifacts__storage_id__owner__id: ID, artifacts__storage_id__source__id: ID, artifacts__storage_id__value: String, artifacts__storage_id__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifactTarget! + CoreArtifactThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], artifact_id__is_protected: Boolean, artifact_id__is_visible: Boolean, artifact_id__isnull: Boolean, artifact_id__owner__id: ID, artifact_id__source__id: ID, artifact_id__value: String, artifact_id__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, line_number__is_protected: Boolean, line_number__is_visible: Boolean, line_number__isnull: Boolean, line_number__owner__id: ID, line_number__source__id: ID, line_number__value: BigInt, line_number__values: [BigInt], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], storage_id__is_protected: Boolean, storage_id__is_visible: Boolean, storage_id__isnull: Boolean, storage_id__owner__id: ID, storage_id__source__id: ID, storage_id__value: String, storage_id__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifactThread! + CoreArtifactValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], definition__artifact_name__is_protected: Boolean, definition__artifact_name__is_visible: Boolean, definition__artifact_name__owner__id: ID, definition__artifact_name__source__id: ID, definition__artifact_name__value: String, definition__artifact_name__values: [String], definition__content_type__is_protected: Boolean, definition__content_type__is_visible: Boolean, definition__content_type__owner__id: ID, definition__content_type__source__id: ID, definition__content_type__value: String, definition__content_type__values: [String], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreArtifactValidator! + CoreBasePermission(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__isnull: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreBasePermission! + CoreChangeComment(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], text__is_protected: Boolean, text__is_visible: Boolean, text__isnull: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): PaginatedCoreChangeComment! + CoreChangeThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreChangeThread! + CoreCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreCheck! + CoreCheckDefinition(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__isnull: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__isnull: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], targets__description__is_protected: Boolean, targets__description__is_visible: Boolean, targets__description__owner__id: ID, targets__description__source__id: ID, targets__description__value: String, targets__description__values: [String], targets__group_type__is_protected: Boolean, targets__group_type__is_visible: Boolean, targets__group_type__owner__id: ID, targets__group_type__source__id: ID, targets__group_type__value: String, targets__group_type__values: [String], targets__ids: [ID], targets__isnull: Boolean, targets__label__is_protected: Boolean, targets__label__is_visible: Boolean, targets__label__owner__id: ID, targets__label__source__id: ID, targets__label__value: String, targets__label__values: [String], targets__name__is_protected: Boolean, targets__name__is_visible: Boolean, targets__name__owner__id: ID, targets__name__source__id: ID, targets__name__value: String, targets__name__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreCheckDefinition! + CoreComment(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], text__is_protected: Boolean, text__is_visible: Boolean, text__isnull: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String]): PaginatedCoreComment! + CoreCredential(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreCredential! + CoreCustomWebhook(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], event_type__is_protected: Boolean, event_type__is_visible: Boolean, event_type__isnull: Boolean, event_type__owner__id: ID, event_type__source__id: ID, event_type__value: String, event_type__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, shared_key__is_protected: Boolean, shared_key__is_visible: Boolean, shared_key__isnull: Boolean, shared_key__owner__id: ID, shared_key__source__id: ID, shared_key__value: String, shared_key__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], transformation__class_name__is_protected: Boolean, transformation__class_name__is_visible: Boolean, transformation__class_name__owner__id: ID, transformation__class_name__source__id: ID, transformation__class_name__value: String, transformation__class_name__values: [String], transformation__convert_query_response__is_protected: Boolean, transformation__convert_query_response__is_visible: Boolean, transformation__convert_query_response__owner__id: ID, transformation__convert_query_response__source__id: ID, transformation__convert_query_response__value: Boolean, transformation__convert_query_response__values: [Boolean], transformation__description__is_protected: Boolean, transformation__description__is_visible: Boolean, transformation__description__owner__id: ID, transformation__description__source__id: ID, transformation__description__value: String, transformation__description__values: [String], transformation__file_path__is_protected: Boolean, transformation__file_path__is_visible: Boolean, transformation__file_path__owner__id: ID, transformation__file_path__source__id: ID, transformation__file_path__value: String, transformation__file_path__values: [String], transformation__ids: [ID], transformation__isnull: Boolean, transformation__label__is_protected: Boolean, transformation__label__is_visible: Boolean, transformation__label__owner__id: ID, transformation__label__source__id: ID, transformation__label__value: String, transformation__label__values: [String], transformation__name__is_protected: Boolean, transformation__name__is_visible: Boolean, transformation__name__owner__id: ID, transformation__name__source__id: ID, transformation__name__value: String, transformation__name__values: [String], transformation__timeout__is_protected: Boolean, transformation__timeout__is_visible: Boolean, transformation__timeout__owner__id: ID, transformation__timeout__source__id: ID, transformation__timeout__value: BigInt, transformation__timeout__values: [BigInt], url__is_protected: Boolean, url__is_visible: Boolean, url__isnull: Boolean, url__owner__id: ID, url__source__id: ID, url__value: String, url__values: [String], validate_certificates__is_protected: Boolean, validate_certificates__is_visible: Boolean, validate_certificates__isnull: Boolean, validate_certificates__owner__id: ID, validate_certificates__source__id: ID, validate_certificates__value: Boolean, validate_certificates__values: [Boolean]): PaginatedCoreCustomWebhook! + CoreDataCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], conflicts__is_protected: Boolean, conflicts__is_visible: Boolean, conflicts__isnull: Boolean, conflicts__owner__id: ID, conflicts__source__id: ID, conflicts__value: GenericScalar, conflicts__values: [GenericScalar], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], enriched_conflict_id__is_protected: Boolean, enriched_conflict_id__is_visible: Boolean, enriched_conflict_id__isnull: Boolean, enriched_conflict_id__owner__id: ID, enriched_conflict_id__source__id: ID, enriched_conflict_id__value: String, enriched_conflict_id__values: [String], ids: [ID], keep_branch__is_protected: Boolean, keep_branch__is_visible: Boolean, keep_branch__isnull: Boolean, keep_branch__owner__id: ID, keep_branch__source__id: ID, keep_branch__value: String, keep_branch__values: [String], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreDataCheck! + CoreDataValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreDataValidator! + CoreFileCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], files__is_protected: Boolean, files__is_visible: Boolean, files__isnull: Boolean, files__owner__id: ID, files__source__id: ID, files__value: GenericScalar, files__values: [GenericScalar], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreFileCheck! + CoreFileThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], file__is_protected: Boolean, file__is_visible: Boolean, file__isnull: Boolean, file__owner__id: ID, file__source__id: ID, file__value: String, file__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, line_number__is_protected: Boolean, line_number__is_visible: Boolean, line_number__isnull: Boolean, line_number__owner__id: ID, line_number__source__id: ID, line_number__value: BigInt, line_number__values: [BigInt], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, repository__commit__is_protected: Boolean, repository__commit__is_visible: Boolean, repository__commit__owner__id: ID, repository__commit__source__id: ID, repository__commit__value: String, repository__commit__values: [String], repository__default_branch__is_protected: Boolean, repository__default_branch__is_visible: Boolean, repository__default_branch__owner__id: ID, repository__default_branch__source__id: ID, repository__default_branch__value: String, repository__default_branch__values: [String], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreFileThread! + CoreGeneratorAction(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generator__class_name__is_protected: Boolean, generator__class_name__is_visible: Boolean, generator__class_name__owner__id: ID, generator__class_name__source__id: ID, generator__class_name__value: String, generator__class_name__values: [String], generator__convert_query_response__is_protected: Boolean, generator__convert_query_response__is_visible: Boolean, generator__convert_query_response__owner__id: ID, generator__convert_query_response__source__id: ID, generator__convert_query_response__value: Boolean, generator__convert_query_response__values: [Boolean], generator__description__is_protected: Boolean, generator__description__is_visible: Boolean, generator__description__owner__id: ID, generator__description__source__id: ID, generator__description__value: String, generator__description__values: [String], generator__execute_after_merge__is_protected: Boolean, generator__execute_after_merge__is_visible: Boolean, generator__execute_after_merge__owner__id: ID, generator__execute_after_merge__source__id: ID, generator__execute_after_merge__value: Boolean, generator__execute_after_merge__values: [Boolean], generator__execute_in_proposed_change__is_protected: Boolean, generator__execute_in_proposed_change__is_visible: Boolean, generator__execute_in_proposed_change__owner__id: ID, generator__execute_in_proposed_change__source__id: ID, generator__execute_in_proposed_change__value: Boolean, generator__execute_in_proposed_change__values: [Boolean], generator__file_path__is_protected: Boolean, generator__file_path__is_visible: Boolean, generator__file_path__owner__id: ID, generator__file_path__source__id: ID, generator__file_path__value: String, generator__file_path__values: [String], generator__ids: [ID], generator__isnull: Boolean, generator__name__is_protected: Boolean, generator__name__is_visible: Boolean, generator__name__owner__id: ID, generator__name__source__id: ID, generator__name__value: String, generator__name__values: [String], generator__parameters__is_protected: Boolean, generator__parameters__is_visible: Boolean, generator__parameters__owner__id: ID, generator__parameters__source__id: ID, generator__parameters__value: GenericScalar, generator__parameters__values: [GenericScalar], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], triggers__active__is_protected: Boolean, triggers__active__is_visible: Boolean, triggers__active__owner__id: ID, triggers__active__source__id: ID, triggers__active__value: Boolean, triggers__active__values: [Boolean], triggers__branch_scope__is_protected: Boolean, triggers__branch_scope__is_visible: Boolean, triggers__branch_scope__owner__id: ID, triggers__branch_scope__source__id: ID, triggers__branch_scope__value: String, triggers__branch_scope__values: [String], triggers__description__is_protected: Boolean, triggers__description__is_visible: Boolean, triggers__description__owner__id: ID, triggers__description__source__id: ID, triggers__description__value: String, triggers__description__values: [String], triggers__ids: [ID], triggers__isnull: Boolean, triggers__name__is_protected: Boolean, triggers__name__is_visible: Boolean, triggers__name__owner__id: ID, triggers__name__source__id: ID, triggers__name__value: String, triggers__name__values: [String]): PaginatedCoreGeneratorAction! + CoreGeneratorAwareGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGeneratorAwareGroup! + CoreGeneratorCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], instance__is_protected: Boolean, instance__is_visible: Boolean, instance__isnull: Boolean, instance__owner__id: ID, instance__source__id: ID, instance__value: String, instance__values: [String], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreGeneratorCheck! + CoreGeneratorDefinition(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__isnull: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__isnull: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], execute_after_merge__is_protected: Boolean, execute_after_merge__is_visible: Boolean, execute_after_merge__isnull: Boolean, execute_after_merge__owner__id: ID, execute_after_merge__source__id: ID, execute_after_merge__value: Boolean, execute_after_merge__values: [Boolean], execute_in_proposed_change__is_protected: Boolean, execute_in_proposed_change__is_visible: Boolean, execute_in_proposed_change__isnull: Boolean, execute_in_proposed_change__owner__id: ID, execute_in_proposed_change__source__id: ID, execute_in_proposed_change__value: Boolean, execute_in_proposed_change__values: [Boolean], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__isnull: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], targets__description__is_protected: Boolean, targets__description__is_visible: Boolean, targets__description__owner__id: ID, targets__description__source__id: ID, targets__description__value: String, targets__description__values: [String], targets__group_type__is_protected: Boolean, targets__group_type__is_visible: Boolean, targets__group_type__owner__id: ID, targets__group_type__source__id: ID, targets__group_type__value: String, targets__group_type__values: [String], targets__ids: [ID], targets__isnull: Boolean, targets__label__is_protected: Boolean, targets__label__is_visible: Boolean, targets__label__owner__id: ID, targets__label__source__id: ID, targets__label__value: String, targets__label__values: [String], targets__name__is_protected: Boolean, targets__name__is_visible: Boolean, targets__name__owner__id: ID, targets__name__source__id: ID, targets__name__value: String, targets__name__values: [String]): PaginatedCoreGeneratorDefinition! + CoreGeneratorGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGeneratorGroup! + CoreGeneratorInstance(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], definition__class_name__is_protected: Boolean, definition__class_name__is_visible: Boolean, definition__class_name__owner__id: ID, definition__class_name__source__id: ID, definition__class_name__value: String, definition__class_name__values: [String], definition__convert_query_response__is_protected: Boolean, definition__convert_query_response__is_visible: Boolean, definition__convert_query_response__owner__id: ID, definition__convert_query_response__source__id: ID, definition__convert_query_response__value: Boolean, definition__convert_query_response__values: [Boolean], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__execute_after_merge__is_protected: Boolean, definition__execute_after_merge__is_visible: Boolean, definition__execute_after_merge__owner__id: ID, definition__execute_after_merge__source__id: ID, definition__execute_after_merge__value: Boolean, definition__execute_after_merge__values: [Boolean], definition__execute_in_proposed_change__is_protected: Boolean, definition__execute_in_proposed_change__is_visible: Boolean, definition__execute_in_proposed_change__owner__id: ID, definition__execute_in_proposed_change__source__id: ID, definition__execute_in_proposed_change__value: Boolean, definition__execute_in_proposed_change__values: [Boolean], definition__file_path__is_protected: Boolean, definition__file_path__is_visible: Boolean, definition__file_path__owner__id: ID, definition__file_path__source__id: ID, definition__file_path__value: String, definition__file_path__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], object__ids: [ID], object__isnull: Boolean, offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGeneratorInstance! + CoreGeneratorValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], definition__class_name__is_protected: Boolean, definition__class_name__is_visible: Boolean, definition__class_name__owner__id: ID, definition__class_name__source__id: ID, definition__class_name__value: String, definition__class_name__values: [String], definition__convert_query_response__is_protected: Boolean, definition__convert_query_response__is_visible: Boolean, definition__convert_query_response__owner__id: ID, definition__convert_query_response__source__id: ID, definition__convert_query_response__value: Boolean, definition__convert_query_response__values: [Boolean], definition__description__is_protected: Boolean, definition__description__is_visible: Boolean, definition__description__owner__id: ID, definition__description__source__id: ID, definition__description__value: String, definition__description__values: [String], definition__execute_after_merge__is_protected: Boolean, definition__execute_after_merge__is_visible: Boolean, definition__execute_after_merge__owner__id: ID, definition__execute_after_merge__source__id: ID, definition__execute_after_merge__value: Boolean, definition__execute_after_merge__values: [Boolean], definition__execute_in_proposed_change__is_protected: Boolean, definition__execute_in_proposed_change__is_visible: Boolean, definition__execute_in_proposed_change__owner__id: ID, definition__execute_in_proposed_change__source__id: ID, definition__execute_in_proposed_change__value: Boolean, definition__execute_in_proposed_change__values: [Boolean], definition__file_path__is_protected: Boolean, definition__file_path__is_visible: Boolean, definition__file_path__owner__id: ID, definition__file_path__source__id: ID, definition__file_path__value: String, definition__file_path__values: [String], definition__ids: [ID], definition__isnull: Boolean, definition__name__is_protected: Boolean, definition__name__is_visible: Boolean, definition__name__owner__id: ID, definition__name__source__id: ID, definition__name__value: String, definition__name__values: [String], definition__parameters__is_protected: Boolean, definition__parameters__is_visible: Boolean, definition__parameters__owner__id: ID, definition__parameters__source__id: ID, definition__parameters__value: GenericScalar, definition__parameters__values: [GenericScalar], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGeneratorValidator! + CoreGenericAccount(account_type__is_protected: Boolean, account_type__is_visible: Boolean, account_type__isnull: Boolean, account_type__owner__id: ID, account_type__source__id: ID, account_type__value: String, account_type__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, password__is_protected: Boolean, password__is_visible: Boolean, password__isnull: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], status__is_protected: Boolean, status__is_visible: Boolean, status__isnull: Boolean, status__owner__id: ID, status__source__id: ID, status__value: String, status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGenericAccount! + CoreGenericRepository(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__class_name__is_protected: Boolean, checks__class_name__is_visible: Boolean, checks__class_name__owner__id: ID, checks__class_name__source__id: ID, checks__class_name__value: String, checks__class_name__values: [String], checks__description__is_protected: Boolean, checks__description__is_visible: Boolean, checks__description__owner__id: ID, checks__description__source__id: ID, checks__description__value: String, checks__description__values: [String], checks__file_path__is_protected: Boolean, checks__file_path__is_visible: Boolean, checks__file_path__owner__id: ID, checks__file_path__source__id: ID, checks__file_path__value: String, checks__file_path__values: [String], checks__ids: [ID], checks__isnull: Boolean, checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__parameters__is_protected: Boolean, checks__parameters__is_visible: Boolean, checks__parameters__owner__id: ID, checks__parameters__source__id: ID, checks__parameters__value: GenericScalar, checks__parameters__values: [GenericScalar], checks__timeout__is_protected: Boolean, checks__timeout__is_visible: Boolean, checks__timeout__owner__id: ID, checks__timeout__source__id: ID, checks__timeout__value: BigInt, checks__timeout__values: [BigInt], credential__description__is_protected: Boolean, credential__description__is_visible: Boolean, credential__description__owner__id: ID, credential__description__source__id: ID, credential__description__value: String, credential__description__values: [String], credential__ids: [ID], credential__isnull: Boolean, credential__label__is_protected: Boolean, credential__label__is_visible: Boolean, credential__label__owner__id: ID, credential__label__source__id: ID, credential__label__value: String, credential__label__values: [String], credential__name__is_protected: Boolean, credential__name__is_visible: Boolean, credential__name__owner__id: ID, credential__name__source__id: ID, credential__name__value: String, credential__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generators__class_name__is_protected: Boolean, generators__class_name__is_visible: Boolean, generators__class_name__owner__id: ID, generators__class_name__source__id: ID, generators__class_name__value: String, generators__class_name__values: [String], generators__convert_query_response__is_protected: Boolean, generators__convert_query_response__is_visible: Boolean, generators__convert_query_response__owner__id: ID, generators__convert_query_response__source__id: ID, generators__convert_query_response__value: Boolean, generators__convert_query_response__values: [Boolean], generators__description__is_protected: Boolean, generators__description__is_visible: Boolean, generators__description__owner__id: ID, generators__description__source__id: ID, generators__description__value: String, generators__description__values: [String], generators__execute_after_merge__is_protected: Boolean, generators__execute_after_merge__is_visible: Boolean, generators__execute_after_merge__owner__id: ID, generators__execute_after_merge__source__id: ID, generators__execute_after_merge__value: Boolean, generators__execute_after_merge__values: [Boolean], generators__execute_in_proposed_change__is_protected: Boolean, generators__execute_in_proposed_change__is_visible: Boolean, generators__execute_in_proposed_change__owner__id: ID, generators__execute_in_proposed_change__source__id: ID, generators__execute_in_proposed_change__value: Boolean, generators__execute_in_proposed_change__values: [Boolean], generators__file_path__is_protected: Boolean, generators__file_path__is_visible: Boolean, generators__file_path__owner__id: ID, generators__file_path__source__id: ID, generators__file_path__value: String, generators__file_path__values: [String], generators__ids: [ID], generators__isnull: Boolean, generators__name__is_protected: Boolean, generators__name__is_visible: Boolean, generators__name__owner__id: ID, generators__name__source__id: ID, generators__name__value: String, generators__name__values: [String], generators__parameters__is_protected: Boolean, generators__parameters__is_visible: Boolean, generators__parameters__owner__id: ID, generators__parameters__source__id: ID, generators__parameters__value: GenericScalar, generators__parameters__values: [GenericScalar], groups_objects__content__is_protected: Boolean, groups_objects__content__is_visible: Boolean, groups_objects__content__owner__id: ID, groups_objects__content__source__id: ID, groups_objects__content__value: String, groups_objects__content__values: [String], groups_objects__description__is_protected: Boolean, groups_objects__description__is_visible: Boolean, groups_objects__description__owner__id: ID, groups_objects__description__source__id: ID, groups_objects__description__value: String, groups_objects__description__values: [String], groups_objects__group_type__is_protected: Boolean, groups_objects__group_type__is_visible: Boolean, groups_objects__group_type__owner__id: ID, groups_objects__group_type__source__id: ID, groups_objects__group_type__value: String, groups_objects__group_type__values: [String], groups_objects__ids: [ID], groups_objects__isnull: Boolean, groups_objects__label__is_protected: Boolean, groups_objects__label__is_visible: Boolean, groups_objects__label__owner__id: ID, groups_objects__label__source__id: ID, groups_objects__label__value: String, groups_objects__label__values: [String], groups_objects__name__is_protected: Boolean, groups_objects__name__is_visible: Boolean, groups_objects__name__owner__id: ID, groups_objects__name__source__id: ID, groups_objects__name__value: String, groups_objects__name__values: [String], hfid: [String], ids: [ID], internal_status__is_protected: Boolean, internal_status__is_visible: Boolean, internal_status__isnull: Boolean, internal_status__owner__id: ID, internal_status__source__id: ID, internal_status__value: String, internal_status__values: [String], limit: NonNegativeInt, location__is_protected: Boolean, location__is_visible: Boolean, location__isnull: Boolean, location__owner__id: ID, location__source__id: ID, location__value: String, location__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, operational_status__is_protected: Boolean, operational_status__is_visible: Boolean, operational_status__isnull: Boolean, operational_status__owner__id: ID, operational_status__source__id: ID, operational_status__value: String, operational_status__values: [String], order: OrderInput, partial_match: Boolean, queries__depth__is_protected: Boolean, queries__depth__is_visible: Boolean, queries__depth__owner__id: ID, queries__depth__source__id: ID, queries__depth__value: BigInt, queries__depth__values: [BigInt], queries__description__is_protected: Boolean, queries__description__is_visible: Boolean, queries__description__owner__id: ID, queries__description__source__id: ID, queries__description__value: String, queries__description__values: [String], queries__height__is_protected: Boolean, queries__height__is_visible: Boolean, queries__height__owner__id: ID, queries__height__source__id: ID, queries__height__value: BigInt, queries__height__values: [BigInt], queries__ids: [ID], queries__isnull: Boolean, queries__models__is_protected: Boolean, queries__models__is_visible: Boolean, queries__models__owner__id: ID, queries__models__source__id: ID, queries__models__value: GenericScalar, queries__models__values: [GenericScalar], queries__name__is_protected: Boolean, queries__name__is_visible: Boolean, queries__name__owner__id: ID, queries__name__source__id: ID, queries__name__value: String, queries__name__values: [String], queries__operations__is_protected: Boolean, queries__operations__is_visible: Boolean, queries__operations__owner__id: ID, queries__operations__source__id: ID, queries__operations__value: GenericScalar, queries__operations__values: [GenericScalar], queries__query__is_protected: Boolean, queries__query__is_visible: Boolean, queries__query__owner__id: ID, queries__query__source__id: ID, queries__query__value: String, queries__query__values: [String], queries__variables__is_protected: Boolean, queries__variables__is_visible: Boolean, queries__variables__owner__id: ID, queries__variables__source__id: ID, queries__variables__value: GenericScalar, queries__variables__values: [GenericScalar], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], sync_status__is_protected: Boolean, sync_status__is_visible: Boolean, sync_status__isnull: Boolean, sync_status__owner__id: ID, sync_status__source__id: ID, sync_status__value: String, sync_status__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], transformations__description__is_protected: Boolean, transformations__description__is_visible: Boolean, transformations__description__owner__id: ID, transformations__description__source__id: ID, transformations__description__value: String, transformations__description__values: [String], transformations__ids: [ID], transformations__isnull: Boolean, transformations__label__is_protected: Boolean, transformations__label__is_visible: Boolean, transformations__label__owner__id: ID, transformations__label__source__id: ID, transformations__label__value: String, transformations__label__values: [String], transformations__name__is_protected: Boolean, transformations__name__is_visible: Boolean, transformations__name__owner__id: ID, transformations__name__source__id: ID, transformations__name__value: String, transformations__name__values: [String], transformations__timeout__is_protected: Boolean, transformations__timeout__is_visible: Boolean, transformations__timeout__owner__id: ID, transformations__timeout__source__id: ID, transformations__timeout__value: BigInt, transformations__timeout__values: [BigInt]): PaginatedCoreGenericRepository! + CoreGlobalPermission(action__is_protected: Boolean, action__is_visible: Boolean, action__isnull: Boolean, action__owner__id: ID, action__source__id: ID, action__value: String, action__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], decision__is_protected: Boolean, decision__is_visible: Boolean, decision__isnull: Boolean, decision__owner__id: ID, decision__source__id: ID, decision__value: BigInt, decision__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__isnull: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGlobalPermission! + CoreGraphQLQuery(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], depth__is_protected: Boolean, depth__is_visible: Boolean, depth__isnull: Boolean, depth__owner__id: ID, depth__source__id: ID, depth__value: BigInt, depth__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], height__is_protected: Boolean, height__is_visible: Boolean, height__isnull: Boolean, height__owner__id: ID, height__source__id: ID, height__value: BigInt, height__values: [BigInt], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], models__is_protected: Boolean, models__is_visible: Boolean, models__isnull: Boolean, models__owner__id: ID, models__source__id: ID, models__value: GenericScalar, models__values: [GenericScalar], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, operations__is_protected: Boolean, operations__is_visible: Boolean, operations__isnull: Boolean, operations__owner__id: ID, operations__source__id: ID, operations__value: GenericScalar, operations__values: [GenericScalar], order: OrderInput, partial_match: Boolean, query__is_protected: Boolean, query__is_visible: Boolean, query__isnull: Boolean, query__owner__id: ID, query__source__id: ID, query__value: String, query__values: [String], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], variables__is_protected: Boolean, variables__is_visible: Boolean, variables__isnull: Boolean, variables__owner__id: ID, variables__source__id: ID, variables__value: GenericScalar, variables__values: [GenericScalar]): PaginatedCoreGraphQLQuery! + CoreGraphQLQueryGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parameters__is_protected: Boolean, parameters__is_visible: Boolean, parameters__isnull: Boolean, parameters__owner__id: ID, parameters__source__id: ID, parameters__value: GenericScalar, parameters__values: [GenericScalar], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGraphQLQueryGroup! + CoreGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreGroup! + CoreGroupAction(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group__description__is_protected: Boolean, group__description__is_visible: Boolean, group__description__owner__id: ID, group__description__source__id: ID, group__description__value: String, group__description__values: [String], group__group_type__is_protected: Boolean, group__group_type__is_visible: Boolean, group__group_type__owner__id: ID, group__group_type__source__id: ID, group__group_type__value: String, group__group_type__values: [String], group__ids: [ID], group__isnull: Boolean, group__label__is_protected: Boolean, group__label__is_visible: Boolean, group__label__owner__id: ID, group__label__source__id: ID, group__label__value: String, group__label__values: [String], group__name__is_protected: Boolean, group__name__is_visible: Boolean, group__name__owner__id: ID, group__name__source__id: ID, group__name__value: String, group__name__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_action__is_protected: Boolean, member_action__is_visible: Boolean, member_action__isnull: Boolean, member_action__owner__id: ID, member_action__source__id: ID, member_action__value: String, member_action__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], triggers__active__is_protected: Boolean, triggers__active__is_visible: Boolean, triggers__active__owner__id: ID, triggers__active__source__id: ID, triggers__active__value: Boolean, triggers__active__values: [Boolean], triggers__branch_scope__is_protected: Boolean, triggers__branch_scope__is_visible: Boolean, triggers__branch_scope__owner__id: ID, triggers__branch_scope__source__id: ID, triggers__branch_scope__value: String, triggers__branch_scope__values: [String], triggers__description__is_protected: Boolean, triggers__description__is_visible: Boolean, triggers__description__owner__id: ID, triggers__description__source__id: ID, triggers__description__value: String, triggers__description__values: [String], triggers__ids: [ID], triggers__isnull: Boolean, triggers__name__is_protected: Boolean, triggers__name__is_visible: Boolean, triggers__name__owner__id: ID, triggers__name__source__id: ID, triggers__name__value: String, triggers__name__values: [String]): PaginatedCoreGroupAction! + CoreGroupTriggerRule(action__description__is_protected: Boolean, action__description__is_visible: Boolean, action__description__owner__id: ID, action__description__source__id: ID, action__description__value: String, action__description__values: [String], action__ids: [ID], action__isnull: Boolean, action__name__is_protected: Boolean, action__name__is_visible: Boolean, action__name__owner__id: ID, action__name__source__id: ID, action__name__value: String, action__name__values: [String], active__is_protected: Boolean, active__is_visible: Boolean, active__isnull: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group__description__is_protected: Boolean, group__description__is_visible: Boolean, group__description__owner__id: ID, group__description__source__id: ID, group__description__value: String, group__description__values: [String], group__group_type__is_protected: Boolean, group__group_type__is_visible: Boolean, group__group_type__owner__id: ID, group__group_type__source__id: ID, group__group_type__value: String, group__group_type__values: [String], group__ids: [ID], group__isnull: Boolean, group__label__is_protected: Boolean, group__label__is_visible: Boolean, group__label__owner__id: ID, group__label__source__id: ID, group__label__value: String, group__label__values: [String], group__name__is_protected: Boolean, group__name__is_visible: Boolean, group__name__owner__id: ID, group__name__source__id: ID, group__name__value: String, group__name__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], member_update__is_protected: Boolean, member_update__is_visible: Boolean, member_update__isnull: Boolean, member_update__owner__id: ID, member_update__source__id: ID, member_update__value: String, member_update__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreGroupTriggerRule! + CoreIPAddressPool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], default_address_type__is_protected: Boolean, default_address_type__is_visible: Boolean, default_address_type__isnull: Boolean, default_address_type__owner__id: ID, default_address_type__source__id: ID, default_address_type__value: String, default_address_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__isnull: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, resources__broadcast_address__is_protected: Boolean, resources__broadcast_address__is_visible: Boolean, resources__broadcast_address__owner__id: ID, resources__broadcast_address__source__id: ID, resources__broadcast_address__value: String, resources__broadcast_address__values: [String], resources__description__is_protected: Boolean, resources__description__is_visible: Boolean, resources__description__owner__id: ID, resources__description__source__id: ID, resources__description__value: String, resources__description__values: [String], resources__hostmask__is_protected: Boolean, resources__hostmask__is_visible: Boolean, resources__hostmask__owner__id: ID, resources__hostmask__source__id: ID, resources__hostmask__value: String, resources__hostmask__values: [String], resources__ids: [ID], resources__is_pool__is_protected: Boolean, resources__is_pool__is_visible: Boolean, resources__is_pool__owner__id: ID, resources__is_pool__source__id: ID, resources__is_pool__value: Boolean, resources__is_pool__values: [Boolean], resources__is_top_level__is_protected: Boolean, resources__is_top_level__is_visible: Boolean, resources__is_top_level__owner__id: ID, resources__is_top_level__source__id: ID, resources__is_top_level__value: Boolean, resources__is_top_level__values: [Boolean], resources__isnull: Boolean, resources__member_type__is_protected: Boolean, resources__member_type__is_visible: Boolean, resources__member_type__owner__id: ID, resources__member_type__source__id: ID, resources__member_type__value: String, resources__member_type__values: [String], resources__netmask__is_protected: Boolean, resources__netmask__is_visible: Boolean, resources__netmask__owner__id: ID, resources__netmask__source__id: ID, resources__netmask__value: String, resources__netmask__values: [String], resources__network_address__is_protected: Boolean, resources__network_address__is_visible: Boolean, resources__network_address__owner__id: ID, resources__network_address__source__id: ID, resources__network_address__value: String, resources__network_address__values: [String], resources__prefix__is_protected: Boolean, resources__prefix__is_visible: Boolean, resources__prefix__owner__id: ID, resources__prefix__source__id: ID, resources__prefix__value: String, resources__prefix__values: [String], resources__utilization__is_protected: Boolean, resources__utilization__is_visible: Boolean, resources__utilization__owner__id: ID, resources__utilization__source__id: ID, resources__utilization__value: BigInt, resources__utilization__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreIPAddressPool! + CoreIPPrefixPool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], default_member_type__is_protected: Boolean, default_member_type__is_visible: Boolean, default_member_type__isnull: Boolean, default_member_type__owner__id: ID, default_member_type__source__id: ID, default_member_type__value: String, default_member_type__values: [String], default_prefix_length__is_protected: Boolean, default_prefix_length__is_visible: Boolean, default_prefix_length__isnull: Boolean, default_prefix_length__owner__id: ID, default_prefix_length__source__id: ID, default_prefix_length__value: BigInt, default_prefix_length__values: [BigInt], default_prefix_type__is_protected: Boolean, default_prefix_type__is_visible: Boolean, default_prefix_type__isnull: Boolean, default_prefix_type__owner__id: ID, default_prefix_type__source__id: ID, default_prefix_type__value: String, default_prefix_type__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_namespace__description__is_protected: Boolean, ip_namespace__description__is_visible: Boolean, ip_namespace__description__owner__id: ID, ip_namespace__description__source__id: ID, ip_namespace__description__value: String, ip_namespace__description__values: [String], ip_namespace__ids: [ID], ip_namespace__isnull: Boolean, ip_namespace__name__is_protected: Boolean, ip_namespace__name__is_visible: Boolean, ip_namespace__name__owner__id: ID, ip_namespace__name__source__id: ID, ip_namespace__name__value: String, ip_namespace__name__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, resources__broadcast_address__is_protected: Boolean, resources__broadcast_address__is_visible: Boolean, resources__broadcast_address__owner__id: ID, resources__broadcast_address__source__id: ID, resources__broadcast_address__value: String, resources__broadcast_address__values: [String], resources__description__is_protected: Boolean, resources__description__is_visible: Boolean, resources__description__owner__id: ID, resources__description__source__id: ID, resources__description__value: String, resources__description__values: [String], resources__hostmask__is_protected: Boolean, resources__hostmask__is_visible: Boolean, resources__hostmask__owner__id: ID, resources__hostmask__source__id: ID, resources__hostmask__value: String, resources__hostmask__values: [String], resources__ids: [ID], resources__is_pool__is_protected: Boolean, resources__is_pool__is_visible: Boolean, resources__is_pool__owner__id: ID, resources__is_pool__source__id: ID, resources__is_pool__value: Boolean, resources__is_pool__values: [Boolean], resources__is_top_level__is_protected: Boolean, resources__is_top_level__is_visible: Boolean, resources__is_top_level__owner__id: ID, resources__is_top_level__source__id: ID, resources__is_top_level__value: Boolean, resources__is_top_level__values: [Boolean], resources__isnull: Boolean, resources__member_type__is_protected: Boolean, resources__member_type__is_visible: Boolean, resources__member_type__owner__id: ID, resources__member_type__source__id: ID, resources__member_type__value: String, resources__member_type__values: [String], resources__netmask__is_protected: Boolean, resources__netmask__is_visible: Boolean, resources__netmask__owner__id: ID, resources__netmask__source__id: ID, resources__netmask__value: String, resources__netmask__values: [String], resources__network_address__is_protected: Boolean, resources__network_address__is_visible: Boolean, resources__network_address__owner__id: ID, resources__network_address__source__id: ID, resources__network_address__value: String, resources__network_address__values: [String], resources__prefix__is_protected: Boolean, resources__prefix__is_visible: Boolean, resources__prefix__owner__id: ID, resources__prefix__source__id: ID, resources__prefix__value: String, resources__prefix__values: [String], resources__utilization__is_protected: Boolean, resources__utilization__is_visible: Boolean, resources__utilization__owner__id: ID, resources__utilization__source__id: ID, resources__utilization__value: BigInt, resources__utilization__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreIPPrefixPool! + CoreMenu(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__icon__is_protected: Boolean, children__icon__is_visible: Boolean, children__icon__owner__id: ID, children__icon__source__id: ID, children__icon__value: String, children__icon__values: [String], children__ids: [ID], children__isnull: Boolean, children__kind__is_protected: Boolean, children__kind__is_visible: Boolean, children__kind__owner__id: ID, children__kind__source__id: ID, children__kind__value: String, children__kind__values: [String], children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], children__namespace__is_protected: Boolean, children__namespace__is_visible: Boolean, children__namespace__owner__id: ID, children__namespace__source__id: ID, children__namespace__value: String, children__namespace__values: [String], children__order_weight__is_protected: Boolean, children__order_weight__is_visible: Boolean, children__order_weight__owner__id: ID, children__order_weight__source__id: ID, children__order_weight__value: BigInt, children__order_weight__values: [BigInt], children__path__is_protected: Boolean, children__path__is_visible: Boolean, children__path__owner__id: ID, children__path__source__id: ID, children__path__value: String, children__path__values: [String], children__protected__is_protected: Boolean, children__protected__is_visible: Boolean, children__protected__owner__id: ID, children__protected__source__id: ID, children__protected__value: Boolean, children__protected__values: [Boolean], children__required_permissions__is_protected: Boolean, children__required_permissions__is_visible: Boolean, children__required_permissions__owner__id: ID, children__required_permissions__source__id: ID, children__required_permissions__value: GenericScalar, children__required_permissions__values: [GenericScalar], children__section__is_protected: Boolean, children__section__is_visible: Boolean, children__section__owner__id: ID, children__section__source__id: ID, children__section__value: String, children__section__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__isnull: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__isnull: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__isnull: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__icon__is_protected: Boolean, parent__icon__is_visible: Boolean, parent__icon__owner__id: ID, parent__icon__source__id: ID, parent__icon__value: String, parent__icon__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__kind__is_protected: Boolean, parent__kind__is_visible: Boolean, parent__kind__owner__id: ID, parent__kind__source__id: ID, parent__kind__value: String, parent__kind__values: [String], parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], parent__namespace__is_protected: Boolean, parent__namespace__is_visible: Boolean, parent__namespace__owner__id: ID, parent__namespace__source__id: ID, parent__namespace__value: String, parent__namespace__values: [String], parent__order_weight__is_protected: Boolean, parent__order_weight__is_visible: Boolean, parent__order_weight__owner__id: ID, parent__order_weight__source__id: ID, parent__order_weight__value: BigInt, parent__order_weight__values: [BigInt], parent__path__is_protected: Boolean, parent__path__is_visible: Boolean, parent__path__owner__id: ID, parent__path__source__id: ID, parent__path__value: String, parent__path__values: [String], parent__protected__is_protected: Boolean, parent__protected__is_visible: Boolean, parent__protected__owner__id: ID, parent__protected__source__id: ID, parent__protected__value: Boolean, parent__protected__values: [Boolean], parent__required_permissions__is_protected: Boolean, parent__required_permissions__is_visible: Boolean, parent__required_permissions__owner__id: ID, parent__required_permissions__source__id: ID, parent__required_permissions__value: GenericScalar, parent__required_permissions__values: [GenericScalar], parent__section__is_protected: Boolean, parent__section__is_visible: Boolean, parent__section__owner__id: ID, parent__section__source__id: ID, parent__section__value: String, parent__section__values: [String], partial_match: Boolean, path__is_protected: Boolean, path__is_visible: Boolean, path__isnull: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__isnull: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__isnull: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__isnull: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreMenu! + CoreMenuItem(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__icon__is_protected: Boolean, children__icon__is_visible: Boolean, children__icon__owner__id: ID, children__icon__source__id: ID, children__icon__value: String, children__icon__values: [String], children__ids: [ID], children__isnull: Boolean, children__kind__is_protected: Boolean, children__kind__is_visible: Boolean, children__kind__owner__id: ID, children__kind__source__id: ID, children__kind__value: String, children__kind__values: [String], children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], children__namespace__is_protected: Boolean, children__namespace__is_visible: Boolean, children__namespace__owner__id: ID, children__namespace__source__id: ID, children__namespace__value: String, children__namespace__values: [String], children__order_weight__is_protected: Boolean, children__order_weight__is_visible: Boolean, children__order_weight__owner__id: ID, children__order_weight__source__id: ID, children__order_weight__value: BigInt, children__order_weight__values: [BigInt], children__path__is_protected: Boolean, children__path__is_visible: Boolean, children__path__owner__id: ID, children__path__source__id: ID, children__path__value: String, children__path__values: [String], children__protected__is_protected: Boolean, children__protected__is_visible: Boolean, children__protected__owner__id: ID, children__protected__source__id: ID, children__protected__value: Boolean, children__protected__values: [Boolean], children__required_permissions__is_protected: Boolean, children__required_permissions__is_visible: Boolean, children__required_permissions__owner__id: ID, children__required_permissions__source__id: ID, children__required_permissions__value: GenericScalar, children__required_permissions__values: [GenericScalar], children__section__is_protected: Boolean, children__section__is_visible: Boolean, children__section__owner__id: ID, children__section__source__id: ID, children__section__value: String, children__section__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], icon__is_protected: Boolean, icon__is_visible: Boolean, icon__isnull: Boolean, icon__owner__id: ID, icon__source__id: ID, icon__value: String, icon__values: [String], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__isnull: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, order_weight__is_protected: Boolean, order_weight__is_visible: Boolean, order_weight__isnull: Boolean, order_weight__owner__id: ID, order_weight__source__id: ID, order_weight__value: BigInt, order_weight__values: [BigInt], parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__icon__is_protected: Boolean, parent__icon__is_visible: Boolean, parent__icon__owner__id: ID, parent__icon__source__id: ID, parent__icon__value: String, parent__icon__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__kind__is_protected: Boolean, parent__kind__is_visible: Boolean, parent__kind__owner__id: ID, parent__kind__source__id: ID, parent__kind__value: String, parent__kind__values: [String], parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], parent__namespace__is_protected: Boolean, parent__namespace__is_visible: Boolean, parent__namespace__owner__id: ID, parent__namespace__source__id: ID, parent__namespace__value: String, parent__namespace__values: [String], parent__order_weight__is_protected: Boolean, parent__order_weight__is_visible: Boolean, parent__order_weight__owner__id: ID, parent__order_weight__source__id: ID, parent__order_weight__value: BigInt, parent__order_weight__values: [BigInt], parent__path__is_protected: Boolean, parent__path__is_visible: Boolean, parent__path__owner__id: ID, parent__path__source__id: ID, parent__path__value: String, parent__path__values: [String], parent__protected__is_protected: Boolean, parent__protected__is_visible: Boolean, parent__protected__owner__id: ID, parent__protected__source__id: ID, parent__protected__value: Boolean, parent__protected__values: [Boolean], parent__required_permissions__is_protected: Boolean, parent__required_permissions__is_visible: Boolean, parent__required_permissions__owner__id: ID, parent__required_permissions__source__id: ID, parent__required_permissions__value: GenericScalar, parent__required_permissions__values: [GenericScalar], parent__section__is_protected: Boolean, parent__section__is_visible: Boolean, parent__section__owner__id: ID, parent__section__source__id: ID, parent__section__value: String, parent__section__values: [String], partial_match: Boolean, path__is_protected: Boolean, path__is_visible: Boolean, path__isnull: Boolean, path__owner__id: ID, path__source__id: ID, path__value: String, path__values: [String], protected__is_protected: Boolean, protected__is_visible: Boolean, protected__isnull: Boolean, protected__owner__id: ID, protected__source__id: ID, protected__value: Boolean, protected__values: [Boolean], required_permissions__is_protected: Boolean, required_permissions__is_visible: Boolean, required_permissions__isnull: Boolean, required_permissions__owner__id: ID, required_permissions__source__id: ID, required_permissions__value: GenericScalar, required_permissions__values: [GenericScalar], section__is_protected: Boolean, section__is_visible: Boolean, section__isnull: Boolean, section__owner__id: ID, section__source__id: ID, section__value: String, section__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreMenuItem! + CoreNode(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreNode! + CoreNodeTriggerAttributeMatch(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], attribute_name__is_protected: Boolean, attribute_name__is_visible: Boolean, attribute_name__isnull: Boolean, attribute_name__owner__id: ID, attribute_name__source__id: ID, attribute_name__value: String, attribute_name__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], trigger__active__is_protected: Boolean, trigger__active__is_visible: Boolean, trigger__active__owner__id: ID, trigger__active__source__id: ID, trigger__active__value: Boolean, trigger__active__values: [Boolean], trigger__branch_scope__is_protected: Boolean, trigger__branch_scope__is_visible: Boolean, trigger__branch_scope__owner__id: ID, trigger__branch_scope__source__id: ID, trigger__branch_scope__value: String, trigger__branch_scope__values: [String], trigger__description__is_protected: Boolean, trigger__description__is_visible: Boolean, trigger__description__owner__id: ID, trigger__description__source__id: ID, trigger__description__value: String, trigger__description__values: [String], trigger__ids: [ID], trigger__isnull: Boolean, trigger__mutation_action__is_protected: Boolean, trigger__mutation_action__is_visible: Boolean, trigger__mutation_action__owner__id: ID, trigger__mutation_action__source__id: ID, trigger__mutation_action__value: String, trigger__mutation_action__values: [String], trigger__name__is_protected: Boolean, trigger__name__is_visible: Boolean, trigger__name__owner__id: ID, trigger__name__source__id: ID, trigger__name__value: String, trigger__name__values: [String], trigger__node_kind__is_protected: Boolean, trigger__node_kind__is_visible: Boolean, trigger__node_kind__owner__id: ID, trigger__node_kind__source__id: ID, trigger__node_kind__value: String, trigger__node_kind__values: [String], value__is_protected: Boolean, value__is_visible: Boolean, value__isnull: Boolean, value__owner__id: ID, value__source__id: ID, value__value: String, value__values: [String], value_match__is_protected: Boolean, value_match__is_visible: Boolean, value_match__isnull: Boolean, value_match__owner__id: ID, value_match__source__id: ID, value_match__value: String, value_match__values: [String], value_previous__is_protected: Boolean, value_previous__is_visible: Boolean, value_previous__isnull: Boolean, value_previous__owner__id: ID, value_previous__source__id: ID, value_previous__value: String, value_previous__values: [String]): PaginatedCoreNodeTriggerAttributeMatch! + CoreNodeTriggerMatch(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], trigger__active__is_protected: Boolean, trigger__active__is_visible: Boolean, trigger__active__owner__id: ID, trigger__active__source__id: ID, trigger__active__value: Boolean, trigger__active__values: [Boolean], trigger__branch_scope__is_protected: Boolean, trigger__branch_scope__is_visible: Boolean, trigger__branch_scope__owner__id: ID, trigger__branch_scope__source__id: ID, trigger__branch_scope__value: String, trigger__branch_scope__values: [String], trigger__description__is_protected: Boolean, trigger__description__is_visible: Boolean, trigger__description__owner__id: ID, trigger__description__source__id: ID, trigger__description__value: String, trigger__description__values: [String], trigger__ids: [ID], trigger__isnull: Boolean, trigger__mutation_action__is_protected: Boolean, trigger__mutation_action__is_visible: Boolean, trigger__mutation_action__owner__id: ID, trigger__mutation_action__source__id: ID, trigger__mutation_action__value: String, trigger__mutation_action__values: [String], trigger__name__is_protected: Boolean, trigger__name__is_visible: Boolean, trigger__name__owner__id: ID, trigger__name__source__id: ID, trigger__name__value: String, trigger__name__values: [String], trigger__node_kind__is_protected: Boolean, trigger__node_kind__is_visible: Boolean, trigger__node_kind__owner__id: ID, trigger__node_kind__source__id: ID, trigger__node_kind__value: String, trigger__node_kind__values: [String]): PaginatedCoreNodeTriggerMatch! + CoreNodeTriggerRelationshipMatch(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], modification_type__is_protected: Boolean, modification_type__is_visible: Boolean, modification_type__isnull: Boolean, modification_type__owner__id: ID, modification_type__source__id: ID, modification_type__value: String, modification_type__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, peer__is_protected: Boolean, peer__is_visible: Boolean, peer__isnull: Boolean, peer__owner__id: ID, peer__source__id: ID, peer__value: String, peer__values: [String], relationship_name__is_protected: Boolean, relationship_name__is_visible: Boolean, relationship_name__isnull: Boolean, relationship_name__owner__id: ID, relationship_name__source__id: ID, relationship_name__value: String, relationship_name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], trigger__active__is_protected: Boolean, trigger__active__is_visible: Boolean, trigger__active__owner__id: ID, trigger__active__source__id: ID, trigger__active__value: Boolean, trigger__active__values: [Boolean], trigger__branch_scope__is_protected: Boolean, trigger__branch_scope__is_visible: Boolean, trigger__branch_scope__owner__id: ID, trigger__branch_scope__source__id: ID, trigger__branch_scope__value: String, trigger__branch_scope__values: [String], trigger__description__is_protected: Boolean, trigger__description__is_visible: Boolean, trigger__description__owner__id: ID, trigger__description__source__id: ID, trigger__description__value: String, trigger__description__values: [String], trigger__ids: [ID], trigger__isnull: Boolean, trigger__mutation_action__is_protected: Boolean, trigger__mutation_action__is_visible: Boolean, trigger__mutation_action__owner__id: ID, trigger__mutation_action__source__id: ID, trigger__mutation_action__value: String, trigger__mutation_action__values: [String], trigger__name__is_protected: Boolean, trigger__name__is_visible: Boolean, trigger__name__owner__id: ID, trigger__name__source__id: ID, trigger__name__value: String, trigger__name__values: [String], trigger__node_kind__is_protected: Boolean, trigger__node_kind__is_visible: Boolean, trigger__node_kind__owner__id: ID, trigger__node_kind__source__id: ID, trigger__node_kind__value: String, trigger__node_kind__values: [String]): PaginatedCoreNodeTriggerRelationshipMatch! + CoreNodeTriggerRule(action__description__is_protected: Boolean, action__description__is_visible: Boolean, action__description__owner__id: ID, action__description__source__id: ID, action__description__value: String, action__description__values: [String], action__ids: [ID], action__isnull: Boolean, action__name__is_protected: Boolean, action__name__is_visible: Boolean, action__name__owner__id: ID, action__name__source__id: ID, action__name__value: String, action__name__values: [String], active__is_protected: Boolean, active__is_visible: Boolean, active__isnull: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, matches__ids: [ID], matches__isnull: Boolean, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], mutation_action__is_protected: Boolean, mutation_action__is_visible: Boolean, mutation_action__isnull: Boolean, mutation_action__owner__id: ID, mutation_action__source__id: ID, mutation_action__value: String, mutation_action__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreNodeTriggerRule! + CoreNumberPool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], end_range__is_protected: Boolean, end_range__is_visible: Boolean, end_range__isnull: Boolean, end_range__owner__id: ID, end_range__source__id: ID, end_range__value: BigInt, end_range__values: [BigInt], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node__is_protected: Boolean, node__is_visible: Boolean, node__isnull: Boolean, node__owner__id: ID, node__source__id: ID, node__value: String, node__values: [String], node_attribute__is_protected: Boolean, node_attribute__is_visible: Boolean, node_attribute__isnull: Boolean, node_attribute__owner__id: ID, node_attribute__source__id: ID, node_attribute__value: String, node_attribute__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, pool_type__is_protected: Boolean, pool_type__is_visible: Boolean, pool_type__isnull: Boolean, pool_type__owner__id: ID, pool_type__source__id: ID, pool_type__value: String, pool_type__values: [String], start_range__is_protected: Boolean, start_range__is_visible: Boolean, start_range__isnull: Boolean, start_range__owner__id: ID, start_range__source__id: ID, start_range__value: BigInt, start_range__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreNumberPool! + CoreObjectComponentTemplate(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], template_name__is_protected: Boolean, template_name__is_visible: Boolean, template_name__isnull: Boolean, template_name__owner__id: ID, template_name__source__id: ID, template_name__value: String, template_name__values: [String]): PaginatedCoreObjectComponentTemplate! + CoreObjectPermission(action__is_protected: Boolean, action__is_visible: Boolean, action__isnull: Boolean, action__owner__id: ID, action__source__id: ID, action__value: String, action__values: [String], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], decision__is_protected: Boolean, decision__is_visible: Boolean, decision__isnull: Boolean, decision__owner__id: ID, decision__source__id: ID, decision__value: BigInt, decision__values: [BigInt], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], identifier__is_protected: Boolean, identifier__is_visible: Boolean, identifier__isnull: Boolean, identifier__owner__id: ID, identifier__source__id: ID, identifier__value: String, identifier__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], namespace__is_protected: Boolean, namespace__is_visible: Boolean, namespace__isnull: Boolean, namespace__owner__id: ID, namespace__source__id: ID, namespace__value: String, namespace__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, roles__ids: [ID], roles__isnull: Boolean, roles__name__is_protected: Boolean, roles__name__is_visible: Boolean, roles__name__owner__id: ID, roles__name__source__id: ID, roles__name__value: String, roles__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreObjectPermission! + CoreObjectTemplate(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], template_name__is_protected: Boolean, template_name__is_visible: Boolean, template_name__isnull: Boolean, template_name__owner__id: ID, template_name__source__id: ID, template_name__value: String, template_name__values: [String]): PaginatedCoreObjectTemplate! + CoreObjectThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], object_path__is_protected: Boolean, object_path__is_visible: Boolean, object_path__isnull: Boolean, object_path__owner__id: ID, object_path__source__id: ID, object_path__value: String, object_path__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreObjectThread! + CorePasswordCredential(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, password__is_protected: Boolean, password__is_visible: Boolean, password__isnull: Boolean, password__owner__id: ID, password__source__id: ID, password__value: String, password__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], username__is_protected: Boolean, username__is_visible: Boolean, username__isnull: Boolean, username__owner__id: ID, username__source__id: ID, username__value: String, username__values: [String]): PaginatedCorePasswordCredential! + CoreProfile(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreProfile! + CoreProposedChange(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], approved_by__account_type__is_protected: Boolean, approved_by__account_type__is_visible: Boolean, approved_by__account_type__owner__id: ID, approved_by__account_type__source__id: ID, approved_by__account_type__value: String, approved_by__account_type__values: [String], approved_by__description__is_protected: Boolean, approved_by__description__is_visible: Boolean, approved_by__description__owner__id: ID, approved_by__description__source__id: ID, approved_by__description__value: String, approved_by__description__values: [String], approved_by__ids: [ID], approved_by__isnull: Boolean, approved_by__label__is_protected: Boolean, approved_by__label__is_visible: Boolean, approved_by__label__owner__id: ID, approved_by__label__source__id: ID, approved_by__label__value: String, approved_by__label__values: [String], approved_by__name__is_protected: Boolean, approved_by__name__is_visible: Boolean, approved_by__name__owner__id: ID, approved_by__name__source__id: ID, approved_by__name__value: String, approved_by__name__values: [String], approved_by__password__is_protected: Boolean, approved_by__password__is_visible: Boolean, approved_by__password__owner__id: ID, approved_by__password__source__id: ID, approved_by__password__value: String, approved_by__password__values: [String], approved_by__status__is_protected: Boolean, approved_by__status__is_visible: Boolean, approved_by__status__owner__id: ID, approved_by__status__source__id: ID, approved_by__status__value: String, approved_by__status__values: [String], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], destination_branch__is_protected: Boolean, destination_branch__is_visible: Boolean, destination_branch__isnull: Boolean, destination_branch__owner__id: ID, destination_branch__source__id: ID, destination_branch__value: String, destination_branch__values: [String], ids: [ID], is_draft__is_protected: Boolean, is_draft__is_visible: Boolean, is_draft__isnull: Boolean, is_draft__owner__id: ID, is_draft__source__id: ID, is_draft__value: Boolean, is_draft__values: [Boolean], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, rejected_by__account_type__is_protected: Boolean, rejected_by__account_type__is_visible: Boolean, rejected_by__account_type__owner__id: ID, rejected_by__account_type__source__id: ID, rejected_by__account_type__value: String, rejected_by__account_type__values: [String], rejected_by__description__is_protected: Boolean, rejected_by__description__is_visible: Boolean, rejected_by__description__owner__id: ID, rejected_by__description__source__id: ID, rejected_by__description__value: String, rejected_by__description__values: [String], rejected_by__ids: [ID], rejected_by__isnull: Boolean, rejected_by__label__is_protected: Boolean, rejected_by__label__is_visible: Boolean, rejected_by__label__owner__id: ID, rejected_by__label__source__id: ID, rejected_by__label__value: String, rejected_by__label__values: [String], rejected_by__name__is_protected: Boolean, rejected_by__name__is_visible: Boolean, rejected_by__name__owner__id: ID, rejected_by__name__source__id: ID, rejected_by__name__value: String, rejected_by__name__values: [String], rejected_by__password__is_protected: Boolean, rejected_by__password__is_visible: Boolean, rejected_by__password__owner__id: ID, rejected_by__password__source__id: ID, rejected_by__password__value: String, rejected_by__password__values: [String], rejected_by__status__is_protected: Boolean, rejected_by__status__is_visible: Boolean, rejected_by__status__owner__id: ID, rejected_by__status__source__id: ID, rejected_by__status__value: String, rejected_by__status__values: [String], reviewers__account_type__is_protected: Boolean, reviewers__account_type__is_visible: Boolean, reviewers__account_type__owner__id: ID, reviewers__account_type__source__id: ID, reviewers__account_type__value: String, reviewers__account_type__values: [String], reviewers__description__is_protected: Boolean, reviewers__description__is_visible: Boolean, reviewers__description__owner__id: ID, reviewers__description__source__id: ID, reviewers__description__value: String, reviewers__description__values: [String], reviewers__ids: [ID], reviewers__isnull: Boolean, reviewers__label__is_protected: Boolean, reviewers__label__is_visible: Boolean, reviewers__label__owner__id: ID, reviewers__label__source__id: ID, reviewers__label__value: String, reviewers__label__values: [String], reviewers__name__is_protected: Boolean, reviewers__name__is_visible: Boolean, reviewers__name__owner__id: ID, reviewers__name__source__id: ID, reviewers__name__value: String, reviewers__name__values: [String], reviewers__password__is_protected: Boolean, reviewers__password__is_visible: Boolean, reviewers__password__owner__id: ID, reviewers__password__source__id: ID, reviewers__password__value: String, reviewers__password__values: [String], reviewers__status__is_protected: Boolean, reviewers__status__is_visible: Boolean, reviewers__status__owner__id: ID, reviewers__status__source__id: ID, reviewers__status__value: String, reviewers__status__values: [String], source_branch__is_protected: Boolean, source_branch__is_visible: Boolean, source_branch__isnull: Boolean, source_branch__owner__id: ID, source_branch__source__id: ID, source_branch__value: String, source_branch__values: [String], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], threads__created_at__is_protected: Boolean, threads__created_at__is_visible: Boolean, threads__created_at__owner__id: ID, threads__created_at__source__id: ID, threads__created_at__value: DateTime, threads__created_at__values: [DateTime], threads__ids: [ID], threads__isnull: Boolean, threads__label__is_protected: Boolean, threads__label__is_visible: Boolean, threads__label__owner__id: ID, threads__label__source__id: ID, threads__label__value: String, threads__label__values: [String], threads__resolved__is_protected: Boolean, threads__resolved__is_visible: Boolean, threads__resolved__owner__id: ID, threads__resolved__source__id: ID, threads__resolved__value: Boolean, threads__resolved__values: [Boolean], total_comments__is_protected: Boolean, total_comments__is_visible: Boolean, total_comments__isnull: Boolean, total_comments__owner__id: ID, total_comments__source__id: ID, total_comments__value: BigInt, total_comments__values: [BigInt], validations__completed_at__is_protected: Boolean, validations__completed_at__is_visible: Boolean, validations__completed_at__owner__id: ID, validations__completed_at__source__id: ID, validations__completed_at__value: DateTime, validations__completed_at__values: [DateTime], validations__conclusion__is_protected: Boolean, validations__conclusion__is_visible: Boolean, validations__conclusion__owner__id: ID, validations__conclusion__source__id: ID, validations__conclusion__value: String, validations__conclusion__values: [String], validations__ids: [ID], validations__isnull: Boolean, validations__label__is_protected: Boolean, validations__label__is_visible: Boolean, validations__label__owner__id: ID, validations__label__source__id: ID, validations__label__value: String, validations__label__values: [String], validations__started_at__is_protected: Boolean, validations__started_at__is_visible: Boolean, validations__started_at__owner__id: ID, validations__started_at__source__id: ID, validations__started_at__value: DateTime, validations__started_at__values: [DateTime], validations__state__is_protected: Boolean, validations__state__is_visible: Boolean, validations__state__owner__id: ID, validations__state__source__id: ID, validations__state__value: String, validations__state__values: [String]): PaginatedCoreProposedChange! CoreProposedChangeAvailableActions(proposed_change_id: String!): AvailableActions! - CoreReadOnlyRepository(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__class_name__is_protected: Boolean, checks__class_name__is_visible: Boolean, checks__class_name__owner__id: ID, checks__class_name__source__id: ID, checks__class_name__value: String, checks__class_name__values: [String], checks__description__is_protected: Boolean, checks__description__is_visible: Boolean, checks__description__owner__id: ID, checks__description__source__id: ID, checks__description__value: String, checks__description__values: [String], checks__file_path__is_protected: Boolean, checks__file_path__is_visible: Boolean, checks__file_path__owner__id: ID, checks__file_path__source__id: ID, checks__file_path__value: String, checks__file_path__values: [String], checks__ids: [ID], checks__isnull: Boolean, checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__parameters__is_protected: Boolean, checks__parameters__is_visible: Boolean, checks__parameters__owner__id: ID, checks__parameters__source__id: ID, checks__parameters__value: GenericScalar, checks__parameters__values: [GenericScalar], checks__timeout__is_protected: Boolean, checks__timeout__is_visible: Boolean, checks__timeout__owner__id: ID, checks__timeout__source__id: ID, checks__timeout__value: BigInt, checks__timeout__values: [BigInt], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], credential__description__is_protected: Boolean, credential__description__is_visible: Boolean, credential__description__owner__id: ID, credential__description__source__id: ID, credential__description__value: String, credential__description__values: [String], credential__ids: [ID], credential__isnull: Boolean, credential__label__is_protected: Boolean, credential__label__is_visible: Boolean, credential__label__owner__id: ID, credential__label__source__id: ID, credential__label__value: String, credential__label__values: [String], credential__name__is_protected: Boolean, credential__name__is_visible: Boolean, credential__name__owner__id: ID, credential__name__source__id: ID, credential__name__value: String, credential__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generators__class_name__is_protected: Boolean, generators__class_name__is_visible: Boolean, generators__class_name__owner__id: ID, generators__class_name__source__id: ID, generators__class_name__value: String, generators__class_name__values: [String], generators__convert_query_response__is_protected: Boolean, generators__convert_query_response__is_visible: Boolean, generators__convert_query_response__owner__id: ID, generators__convert_query_response__source__id: ID, generators__convert_query_response__value: Boolean, generators__convert_query_response__values: [Boolean], generators__description__is_protected: Boolean, generators__description__is_visible: Boolean, generators__description__owner__id: ID, generators__description__source__id: ID, generators__description__value: String, generators__description__values: [String], generators__execute_after_merge__is_protected: Boolean, generators__execute_after_merge__is_visible: Boolean, generators__execute_after_merge__owner__id: ID, generators__execute_after_merge__source__id: ID, generators__execute_after_merge__value: Boolean, generators__execute_after_merge__values: [Boolean], generators__execute_in_proposed_change__is_protected: Boolean, generators__execute_in_proposed_change__is_visible: Boolean, generators__execute_in_proposed_change__owner__id: ID, generators__execute_in_proposed_change__source__id: ID, generators__execute_in_proposed_change__value: Boolean, generators__execute_in_proposed_change__values: [Boolean], generators__file_path__is_protected: Boolean, generators__file_path__is_visible: Boolean, generators__file_path__owner__id: ID, generators__file_path__source__id: ID, generators__file_path__value: String, generators__file_path__values: [String], generators__ids: [ID], generators__isnull: Boolean, generators__name__is_protected: Boolean, generators__name__is_visible: Boolean, generators__name__owner__id: ID, generators__name__source__id: ID, generators__name__value: String, generators__name__values: [String], generators__parameters__is_protected: Boolean, generators__parameters__is_visible: Boolean, generators__parameters__owner__id: ID, generators__parameters__source__id: ID, generators__parameters__value: GenericScalar, generators__parameters__values: [GenericScalar], groups_objects__content__is_protected: Boolean, groups_objects__content__is_visible: Boolean, groups_objects__content__owner__id: ID, groups_objects__content__source__id: ID, groups_objects__content__value: String, groups_objects__content__values: [String], groups_objects__description__is_protected: Boolean, groups_objects__description__is_visible: Boolean, groups_objects__description__owner__id: ID, groups_objects__description__source__id: ID, groups_objects__description__value: String, groups_objects__description__values: [String], groups_objects__group_type__is_protected: Boolean, groups_objects__group_type__is_visible: Boolean, groups_objects__group_type__owner__id: ID, groups_objects__group_type__source__id: ID, groups_objects__group_type__value: String, groups_objects__group_type__values: [String], groups_objects__ids: [ID], groups_objects__isnull: Boolean, groups_objects__label__is_protected: Boolean, groups_objects__label__is_visible: Boolean, groups_objects__label__owner__id: ID, groups_objects__label__source__id: ID, groups_objects__label__value: String, groups_objects__label__values: [String], groups_objects__name__is_protected: Boolean, groups_objects__name__is_visible: Boolean, groups_objects__name__owner__id: ID, groups_objects__name__source__id: ID, groups_objects__name__value: String, groups_objects__name__values: [String], hfid: [String], ids: [ID], internal_status__is_protected: Boolean, internal_status__is_visible: Boolean, internal_status__isnull: Boolean, internal_status__owner__id: ID, internal_status__source__id: ID, internal_status__value: String, internal_status__values: [String], limit: Int, location__is_protected: Boolean, location__is_visible: Boolean, location__isnull: Boolean, location__owner__id: ID, location__source__id: ID, location__value: String, location__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, operational_status__is_protected: Boolean, operational_status__is_visible: Boolean, operational_status__isnull: Boolean, operational_status__owner__id: ID, operational_status__source__id: ID, operational_status__value: String, operational_status__values: [String], order: OrderInput, partial_match: Boolean, queries__depth__is_protected: Boolean, queries__depth__is_visible: Boolean, queries__depth__owner__id: ID, queries__depth__source__id: ID, queries__depth__value: BigInt, queries__depth__values: [BigInt], queries__description__is_protected: Boolean, queries__description__is_visible: Boolean, queries__description__owner__id: ID, queries__description__source__id: ID, queries__description__value: String, queries__description__values: [String], queries__height__is_protected: Boolean, queries__height__is_visible: Boolean, queries__height__owner__id: ID, queries__height__source__id: ID, queries__height__value: BigInt, queries__height__values: [BigInt], queries__ids: [ID], queries__isnull: Boolean, queries__models__is_protected: Boolean, queries__models__is_visible: Boolean, queries__models__owner__id: ID, queries__models__source__id: ID, queries__models__value: GenericScalar, queries__models__values: [GenericScalar], queries__name__is_protected: Boolean, queries__name__is_visible: Boolean, queries__name__owner__id: ID, queries__name__source__id: ID, queries__name__value: String, queries__name__values: [String], queries__operations__is_protected: Boolean, queries__operations__is_visible: Boolean, queries__operations__owner__id: ID, queries__operations__source__id: ID, queries__operations__value: GenericScalar, queries__operations__values: [GenericScalar], queries__query__is_protected: Boolean, queries__query__is_visible: Boolean, queries__query__owner__id: ID, queries__query__source__id: ID, queries__query__value: String, queries__query__values: [String], queries__variables__is_protected: Boolean, queries__variables__is_visible: Boolean, queries__variables__owner__id: ID, queries__variables__source__id: ID, queries__variables__value: GenericScalar, queries__variables__values: [GenericScalar], ref__is_protected: Boolean, ref__is_visible: Boolean, ref__isnull: Boolean, ref__owner__id: ID, ref__source__id: ID, ref__value: String, ref__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], sync_status__is_protected: Boolean, sync_status__is_visible: Boolean, sync_status__isnull: Boolean, sync_status__owner__id: ID, sync_status__source__id: ID, sync_status__value: String, sync_status__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], transformations__description__is_protected: Boolean, transformations__description__is_visible: Boolean, transformations__description__owner__id: ID, transformations__description__source__id: ID, transformations__description__value: String, transformations__description__values: [String], transformations__ids: [ID], transformations__isnull: Boolean, transformations__label__is_protected: Boolean, transformations__label__is_visible: Boolean, transformations__label__owner__id: ID, transformations__label__source__id: ID, transformations__label__value: String, transformations__label__values: [String], transformations__name__is_protected: Boolean, transformations__name__is_visible: Boolean, transformations__name__owner__id: ID, transformations__name__source__id: ID, transformations__name__value: String, transformations__name__values: [String], transformations__timeout__is_protected: Boolean, transformations__timeout__is_visible: Boolean, transformations__timeout__owner__id: ID, transformations__timeout__source__id: ID, transformations__timeout__value: BigInt, transformations__timeout__values: [BigInt]): PaginatedCoreReadOnlyRepository! - CoreRepository(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__class_name__is_protected: Boolean, checks__class_name__is_visible: Boolean, checks__class_name__owner__id: ID, checks__class_name__source__id: ID, checks__class_name__value: String, checks__class_name__values: [String], checks__description__is_protected: Boolean, checks__description__is_visible: Boolean, checks__description__owner__id: ID, checks__description__source__id: ID, checks__description__value: String, checks__description__values: [String], checks__file_path__is_protected: Boolean, checks__file_path__is_visible: Boolean, checks__file_path__owner__id: ID, checks__file_path__source__id: ID, checks__file_path__value: String, checks__file_path__values: [String], checks__ids: [ID], checks__isnull: Boolean, checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__parameters__is_protected: Boolean, checks__parameters__is_visible: Boolean, checks__parameters__owner__id: ID, checks__parameters__source__id: ID, checks__parameters__value: GenericScalar, checks__parameters__values: [GenericScalar], checks__timeout__is_protected: Boolean, checks__timeout__is_visible: Boolean, checks__timeout__owner__id: ID, checks__timeout__source__id: ID, checks__timeout__value: BigInt, checks__timeout__values: [BigInt], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], credential__description__is_protected: Boolean, credential__description__is_visible: Boolean, credential__description__owner__id: ID, credential__description__source__id: ID, credential__description__value: String, credential__description__values: [String], credential__ids: [ID], credential__isnull: Boolean, credential__label__is_protected: Boolean, credential__label__is_visible: Boolean, credential__label__owner__id: ID, credential__label__source__id: ID, credential__label__value: String, credential__label__values: [String], credential__name__is_protected: Boolean, credential__name__is_visible: Boolean, credential__name__owner__id: ID, credential__name__source__id: ID, credential__name__value: String, credential__name__values: [String], default_branch__is_protected: Boolean, default_branch__is_visible: Boolean, default_branch__isnull: Boolean, default_branch__owner__id: ID, default_branch__source__id: ID, default_branch__value: String, default_branch__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generators__class_name__is_protected: Boolean, generators__class_name__is_visible: Boolean, generators__class_name__owner__id: ID, generators__class_name__source__id: ID, generators__class_name__value: String, generators__class_name__values: [String], generators__convert_query_response__is_protected: Boolean, generators__convert_query_response__is_visible: Boolean, generators__convert_query_response__owner__id: ID, generators__convert_query_response__source__id: ID, generators__convert_query_response__value: Boolean, generators__convert_query_response__values: [Boolean], generators__description__is_protected: Boolean, generators__description__is_visible: Boolean, generators__description__owner__id: ID, generators__description__source__id: ID, generators__description__value: String, generators__description__values: [String], generators__execute_after_merge__is_protected: Boolean, generators__execute_after_merge__is_visible: Boolean, generators__execute_after_merge__owner__id: ID, generators__execute_after_merge__source__id: ID, generators__execute_after_merge__value: Boolean, generators__execute_after_merge__values: [Boolean], generators__execute_in_proposed_change__is_protected: Boolean, generators__execute_in_proposed_change__is_visible: Boolean, generators__execute_in_proposed_change__owner__id: ID, generators__execute_in_proposed_change__source__id: ID, generators__execute_in_proposed_change__value: Boolean, generators__execute_in_proposed_change__values: [Boolean], generators__file_path__is_protected: Boolean, generators__file_path__is_visible: Boolean, generators__file_path__owner__id: ID, generators__file_path__source__id: ID, generators__file_path__value: String, generators__file_path__values: [String], generators__ids: [ID], generators__isnull: Boolean, generators__name__is_protected: Boolean, generators__name__is_visible: Boolean, generators__name__owner__id: ID, generators__name__source__id: ID, generators__name__value: String, generators__name__values: [String], generators__parameters__is_protected: Boolean, generators__parameters__is_visible: Boolean, generators__parameters__owner__id: ID, generators__parameters__source__id: ID, generators__parameters__value: GenericScalar, generators__parameters__values: [GenericScalar], groups_objects__content__is_protected: Boolean, groups_objects__content__is_visible: Boolean, groups_objects__content__owner__id: ID, groups_objects__content__source__id: ID, groups_objects__content__value: String, groups_objects__content__values: [String], groups_objects__description__is_protected: Boolean, groups_objects__description__is_visible: Boolean, groups_objects__description__owner__id: ID, groups_objects__description__source__id: ID, groups_objects__description__value: String, groups_objects__description__values: [String], groups_objects__group_type__is_protected: Boolean, groups_objects__group_type__is_visible: Boolean, groups_objects__group_type__owner__id: ID, groups_objects__group_type__source__id: ID, groups_objects__group_type__value: String, groups_objects__group_type__values: [String], groups_objects__ids: [ID], groups_objects__isnull: Boolean, groups_objects__label__is_protected: Boolean, groups_objects__label__is_visible: Boolean, groups_objects__label__owner__id: ID, groups_objects__label__source__id: ID, groups_objects__label__value: String, groups_objects__label__values: [String], groups_objects__name__is_protected: Boolean, groups_objects__name__is_visible: Boolean, groups_objects__name__owner__id: ID, groups_objects__name__source__id: ID, groups_objects__name__value: String, groups_objects__name__values: [String], hfid: [String], ids: [ID], internal_status__is_protected: Boolean, internal_status__is_visible: Boolean, internal_status__isnull: Boolean, internal_status__owner__id: ID, internal_status__source__id: ID, internal_status__value: String, internal_status__values: [String], limit: Int, location__is_protected: Boolean, location__is_visible: Boolean, location__isnull: Boolean, location__owner__id: ID, location__source__id: ID, location__value: String, location__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, operational_status__is_protected: Boolean, operational_status__is_visible: Boolean, operational_status__isnull: Boolean, operational_status__owner__id: ID, operational_status__source__id: ID, operational_status__value: String, operational_status__values: [String], order: OrderInput, partial_match: Boolean, queries__depth__is_protected: Boolean, queries__depth__is_visible: Boolean, queries__depth__owner__id: ID, queries__depth__source__id: ID, queries__depth__value: BigInt, queries__depth__values: [BigInt], queries__description__is_protected: Boolean, queries__description__is_visible: Boolean, queries__description__owner__id: ID, queries__description__source__id: ID, queries__description__value: String, queries__description__values: [String], queries__height__is_protected: Boolean, queries__height__is_visible: Boolean, queries__height__owner__id: ID, queries__height__source__id: ID, queries__height__value: BigInt, queries__height__values: [BigInt], queries__ids: [ID], queries__isnull: Boolean, queries__models__is_protected: Boolean, queries__models__is_visible: Boolean, queries__models__owner__id: ID, queries__models__source__id: ID, queries__models__value: GenericScalar, queries__models__values: [GenericScalar], queries__name__is_protected: Boolean, queries__name__is_visible: Boolean, queries__name__owner__id: ID, queries__name__source__id: ID, queries__name__value: String, queries__name__values: [String], queries__operations__is_protected: Boolean, queries__operations__is_visible: Boolean, queries__operations__owner__id: ID, queries__operations__source__id: ID, queries__operations__value: GenericScalar, queries__operations__values: [GenericScalar], queries__query__is_protected: Boolean, queries__query__is_visible: Boolean, queries__query__owner__id: ID, queries__query__source__id: ID, queries__query__value: String, queries__query__values: [String], queries__variables__is_protected: Boolean, queries__variables__is_visible: Boolean, queries__variables__owner__id: ID, queries__variables__source__id: ID, queries__variables__value: GenericScalar, queries__variables__values: [GenericScalar], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], sync_status__is_protected: Boolean, sync_status__is_visible: Boolean, sync_status__isnull: Boolean, sync_status__owner__id: ID, sync_status__source__id: ID, sync_status__value: String, sync_status__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], transformations__description__is_protected: Boolean, transformations__description__is_visible: Boolean, transformations__description__owner__id: ID, transformations__description__source__id: ID, transformations__description__value: String, transformations__description__values: [String], transformations__ids: [ID], transformations__isnull: Boolean, transformations__label__is_protected: Boolean, transformations__label__is_visible: Boolean, transformations__label__owner__id: ID, transformations__label__source__id: ID, transformations__label__value: String, transformations__label__values: [String], transformations__name__is_protected: Boolean, transformations__name__is_visible: Boolean, transformations__name__owner__id: ID, transformations__name__source__id: ID, transformations__name__value: String, transformations__name__values: [String], transformations__timeout__is_protected: Boolean, transformations__timeout__is_visible: Boolean, transformations__timeout__owner__id: ID, transformations__timeout__source__id: ID, transformations__timeout__value: BigInt, transformations__timeout__values: [BigInt]): PaginatedCoreRepository! - CoreRepositoryGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], content__is_protected: Boolean, content__is_visible: Boolean, content__isnull: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreRepositoryGroup! - CoreRepositoryValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreRepositoryValidator! - CoreResourcePool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreResourcePool! - CoreSchemaCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], conflicts__is_protected: Boolean, conflicts__is_visible: Boolean, conflicts__isnull: Boolean, conflicts__owner__id: ID, conflicts__source__id: ID, conflicts__value: GenericScalar, conflicts__values: [GenericScalar], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], enriched_conflict_id__is_protected: Boolean, enriched_conflict_id__is_visible: Boolean, enriched_conflict_id__isnull: Boolean, enriched_conflict_id__owner__id: ID, enriched_conflict_id__source__id: ID, enriched_conflict_id__value: String, enriched_conflict_id__values: [String], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreSchemaCheck! - CoreSchemaValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreSchemaValidator! - CoreStandardCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreStandardCheck! - CoreStandardGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreStandardGroup! - CoreStandardWebhook(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], event_type__is_protected: Boolean, event_type__is_visible: Boolean, event_type__isnull: Boolean, event_type__owner__id: ID, event_type__source__id: ID, event_type__value: String, event_type__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, shared_key__is_protected: Boolean, shared_key__is_visible: Boolean, shared_key__isnull: Boolean, shared_key__owner__id: ID, shared_key__source__id: ID, shared_key__value: String, shared_key__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], url__is_protected: Boolean, url__is_visible: Boolean, url__isnull: Boolean, url__owner__id: ID, url__source__id: ID, url__value: String, url__values: [String], validate_certificates__is_protected: Boolean, validate_certificates__is_visible: Boolean, validate_certificates__isnull: Boolean, validate_certificates__owner__id: ID, validate_certificates__source__id: ID, validate_certificates__value: Boolean, validate_certificates__values: [Boolean]): PaginatedCoreStandardWebhook! - CoreTaskTarget(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreTaskTarget! - CoreThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreThread! - CoreThreadComment(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], text__is_protected: Boolean, text__is_visible: Boolean, text__isnull: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String], thread__created_at__is_protected: Boolean, thread__created_at__is_visible: Boolean, thread__created_at__owner__id: ID, thread__created_at__source__id: ID, thread__created_at__value: DateTime, thread__created_at__values: [DateTime], thread__ids: [ID], thread__isnull: Boolean, thread__label__is_protected: Boolean, thread__label__is_visible: Boolean, thread__label__owner__id: ID, thread__label__source__id: ID, thread__label__value: String, thread__label__values: [String], thread__resolved__is_protected: Boolean, thread__resolved__is_visible: Boolean, thread__resolved__owner__id: ID, thread__resolved__source__id: ID, thread__resolved__value: Boolean, thread__resolved__values: [Boolean]): PaginatedCoreThreadComment! - CoreTransformJinja2(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], template_path__is_protected: Boolean, template_path__is_visible: Boolean, template_path__isnull: Boolean, template_path__owner__id: ID, template_path__source__id: ID, template_path__value: String, template_path__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreTransformJinja2! - CoreTransformPython(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__isnull: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__isnull: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__isnull: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreTransformPython! - CoreTransformation(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreTransformation! - CoreTriggerRule(action__description__is_protected: Boolean, action__description__is_visible: Boolean, action__description__owner__id: ID, action__description__source__id: ID, action__description__value: String, action__description__values: [String], action__ids: [ID], action__isnull: Boolean, action__name__is_protected: Boolean, action__name__is_visible: Boolean, action__name__owner__id: ID, action__name__source__id: ID, action__name__value: String, action__name__values: [String], active__is_protected: Boolean, active__is_visible: Boolean, active__isnull: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreTriggerRule! - CoreUserValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], check_definition__class_name__is_protected: Boolean, check_definition__class_name__is_visible: Boolean, check_definition__class_name__owner__id: ID, check_definition__class_name__source__id: ID, check_definition__class_name__value: String, check_definition__class_name__values: [String], check_definition__description__is_protected: Boolean, check_definition__description__is_visible: Boolean, check_definition__description__owner__id: ID, check_definition__description__source__id: ID, check_definition__description__value: String, check_definition__description__values: [String], check_definition__file_path__is_protected: Boolean, check_definition__file_path__is_visible: Boolean, check_definition__file_path__owner__id: ID, check_definition__file_path__source__id: ID, check_definition__file_path__value: String, check_definition__file_path__values: [String], check_definition__ids: [ID], check_definition__isnull: Boolean, check_definition__name__is_protected: Boolean, check_definition__name__is_visible: Boolean, check_definition__name__owner__id: ID, check_definition__name__source__id: ID, check_definition__name__value: String, check_definition__name__values: [String], check_definition__parameters__is_protected: Boolean, check_definition__parameters__is_visible: Boolean, check_definition__parameters__owner__id: ID, check_definition__parameters__source__id: ID, check_definition__parameters__value: GenericScalar, check_definition__parameters__values: [GenericScalar], check_definition__timeout__is_protected: Boolean, check_definition__timeout__is_visible: Boolean, check_definition__timeout__owner__id: ID, check_definition__timeout__source__id: ID, check_definition__timeout__value: BigInt, check_definition__timeout__values: [BigInt], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreUserValidator! - CoreValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreValidator! - CoreWebhook(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], event_type__is_protected: Boolean, event_type__is_visible: Boolean, event_type__isnull: Boolean, event_type__owner__id: ID, event_type__source__id: ID, event_type__value: String, event_type__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], url__is_protected: Boolean, url__is_visible: Boolean, url__isnull: Boolean, url__owner__id: ID, url__source__id: ID, url__value: String, url__values: [String], validate_certificates__is_protected: Boolean, validate_certificates__is_visible: Boolean, validate_certificates__isnull: Boolean, validate_certificates__owner__id: ID, validate_certificates__source__id: ID, validate_certificates__value: Boolean, validate_certificates__values: [Boolean]): PaginatedCoreWebhook! - CoreWeightedPoolResource(allocation_weight__is_protected: Boolean, allocation_weight__is_visible: Boolean, allocation_weight__isnull: Boolean, allocation_weight__owner__id: ID, allocation_weight__source__id: ID, allocation_weight__value: BigInt, allocation_weight__values: [BigInt], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreWeightedPoolResource! - DiffTree(branch: String, filters: DiffTreeQueryFilters, from_time: DateTime, include_parents: Boolean, limit: Int, name: String, offset: Int, root_node_uuids: [String] @deprecated(reason: "replaced by filters"), to_time: DateTime): DiffTree + CoreReadOnlyRepository(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__class_name__is_protected: Boolean, checks__class_name__is_visible: Boolean, checks__class_name__owner__id: ID, checks__class_name__source__id: ID, checks__class_name__value: String, checks__class_name__values: [String], checks__description__is_protected: Boolean, checks__description__is_visible: Boolean, checks__description__owner__id: ID, checks__description__source__id: ID, checks__description__value: String, checks__description__values: [String], checks__file_path__is_protected: Boolean, checks__file_path__is_visible: Boolean, checks__file_path__owner__id: ID, checks__file_path__source__id: ID, checks__file_path__value: String, checks__file_path__values: [String], checks__ids: [ID], checks__isnull: Boolean, checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__parameters__is_protected: Boolean, checks__parameters__is_visible: Boolean, checks__parameters__owner__id: ID, checks__parameters__source__id: ID, checks__parameters__value: GenericScalar, checks__parameters__values: [GenericScalar], checks__timeout__is_protected: Boolean, checks__timeout__is_visible: Boolean, checks__timeout__owner__id: ID, checks__timeout__source__id: ID, checks__timeout__value: BigInt, checks__timeout__values: [BigInt], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], credential__description__is_protected: Boolean, credential__description__is_visible: Boolean, credential__description__owner__id: ID, credential__description__source__id: ID, credential__description__value: String, credential__description__values: [String], credential__ids: [ID], credential__isnull: Boolean, credential__label__is_protected: Boolean, credential__label__is_visible: Boolean, credential__label__owner__id: ID, credential__label__source__id: ID, credential__label__value: String, credential__label__values: [String], credential__name__is_protected: Boolean, credential__name__is_visible: Boolean, credential__name__owner__id: ID, credential__name__source__id: ID, credential__name__value: String, credential__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generators__class_name__is_protected: Boolean, generators__class_name__is_visible: Boolean, generators__class_name__owner__id: ID, generators__class_name__source__id: ID, generators__class_name__value: String, generators__class_name__values: [String], generators__convert_query_response__is_protected: Boolean, generators__convert_query_response__is_visible: Boolean, generators__convert_query_response__owner__id: ID, generators__convert_query_response__source__id: ID, generators__convert_query_response__value: Boolean, generators__convert_query_response__values: [Boolean], generators__description__is_protected: Boolean, generators__description__is_visible: Boolean, generators__description__owner__id: ID, generators__description__source__id: ID, generators__description__value: String, generators__description__values: [String], generators__execute_after_merge__is_protected: Boolean, generators__execute_after_merge__is_visible: Boolean, generators__execute_after_merge__owner__id: ID, generators__execute_after_merge__source__id: ID, generators__execute_after_merge__value: Boolean, generators__execute_after_merge__values: [Boolean], generators__execute_in_proposed_change__is_protected: Boolean, generators__execute_in_proposed_change__is_visible: Boolean, generators__execute_in_proposed_change__owner__id: ID, generators__execute_in_proposed_change__source__id: ID, generators__execute_in_proposed_change__value: Boolean, generators__execute_in_proposed_change__values: [Boolean], generators__file_path__is_protected: Boolean, generators__file_path__is_visible: Boolean, generators__file_path__owner__id: ID, generators__file_path__source__id: ID, generators__file_path__value: String, generators__file_path__values: [String], generators__ids: [ID], generators__isnull: Boolean, generators__name__is_protected: Boolean, generators__name__is_visible: Boolean, generators__name__owner__id: ID, generators__name__source__id: ID, generators__name__value: String, generators__name__values: [String], generators__parameters__is_protected: Boolean, generators__parameters__is_visible: Boolean, generators__parameters__owner__id: ID, generators__parameters__source__id: ID, generators__parameters__value: GenericScalar, generators__parameters__values: [GenericScalar], groups_objects__content__is_protected: Boolean, groups_objects__content__is_visible: Boolean, groups_objects__content__owner__id: ID, groups_objects__content__source__id: ID, groups_objects__content__value: String, groups_objects__content__values: [String], groups_objects__description__is_protected: Boolean, groups_objects__description__is_visible: Boolean, groups_objects__description__owner__id: ID, groups_objects__description__source__id: ID, groups_objects__description__value: String, groups_objects__description__values: [String], groups_objects__group_type__is_protected: Boolean, groups_objects__group_type__is_visible: Boolean, groups_objects__group_type__owner__id: ID, groups_objects__group_type__source__id: ID, groups_objects__group_type__value: String, groups_objects__group_type__values: [String], groups_objects__ids: [ID], groups_objects__isnull: Boolean, groups_objects__label__is_protected: Boolean, groups_objects__label__is_visible: Boolean, groups_objects__label__owner__id: ID, groups_objects__label__source__id: ID, groups_objects__label__value: String, groups_objects__label__values: [String], groups_objects__name__is_protected: Boolean, groups_objects__name__is_visible: Boolean, groups_objects__name__owner__id: ID, groups_objects__name__source__id: ID, groups_objects__name__value: String, groups_objects__name__values: [String], hfid: [String], ids: [ID], internal_status__is_protected: Boolean, internal_status__is_visible: Boolean, internal_status__isnull: Boolean, internal_status__owner__id: ID, internal_status__source__id: ID, internal_status__value: String, internal_status__values: [String], limit: NonNegativeInt, location__is_protected: Boolean, location__is_visible: Boolean, location__isnull: Boolean, location__owner__id: ID, location__source__id: ID, location__value: String, location__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, operational_status__is_protected: Boolean, operational_status__is_visible: Boolean, operational_status__isnull: Boolean, operational_status__owner__id: ID, operational_status__source__id: ID, operational_status__value: String, operational_status__values: [String], order: OrderInput, partial_match: Boolean, queries__depth__is_protected: Boolean, queries__depth__is_visible: Boolean, queries__depth__owner__id: ID, queries__depth__source__id: ID, queries__depth__value: BigInt, queries__depth__values: [BigInt], queries__description__is_protected: Boolean, queries__description__is_visible: Boolean, queries__description__owner__id: ID, queries__description__source__id: ID, queries__description__value: String, queries__description__values: [String], queries__height__is_protected: Boolean, queries__height__is_visible: Boolean, queries__height__owner__id: ID, queries__height__source__id: ID, queries__height__value: BigInt, queries__height__values: [BigInt], queries__ids: [ID], queries__isnull: Boolean, queries__models__is_protected: Boolean, queries__models__is_visible: Boolean, queries__models__owner__id: ID, queries__models__source__id: ID, queries__models__value: GenericScalar, queries__models__values: [GenericScalar], queries__name__is_protected: Boolean, queries__name__is_visible: Boolean, queries__name__owner__id: ID, queries__name__source__id: ID, queries__name__value: String, queries__name__values: [String], queries__operations__is_protected: Boolean, queries__operations__is_visible: Boolean, queries__operations__owner__id: ID, queries__operations__source__id: ID, queries__operations__value: GenericScalar, queries__operations__values: [GenericScalar], queries__query__is_protected: Boolean, queries__query__is_visible: Boolean, queries__query__owner__id: ID, queries__query__source__id: ID, queries__query__value: String, queries__query__values: [String], queries__variables__is_protected: Boolean, queries__variables__is_visible: Boolean, queries__variables__owner__id: ID, queries__variables__source__id: ID, queries__variables__value: GenericScalar, queries__variables__values: [GenericScalar], ref__is_protected: Boolean, ref__is_visible: Boolean, ref__isnull: Boolean, ref__owner__id: ID, ref__source__id: ID, ref__value: String, ref__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], sync_status__is_protected: Boolean, sync_status__is_visible: Boolean, sync_status__isnull: Boolean, sync_status__owner__id: ID, sync_status__source__id: ID, sync_status__value: String, sync_status__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], transformations__description__is_protected: Boolean, transformations__description__is_visible: Boolean, transformations__description__owner__id: ID, transformations__description__source__id: ID, transformations__description__value: String, transformations__description__values: [String], transformations__ids: [ID], transformations__isnull: Boolean, transformations__label__is_protected: Boolean, transformations__label__is_visible: Boolean, transformations__label__owner__id: ID, transformations__label__source__id: ID, transformations__label__value: String, transformations__label__values: [String], transformations__name__is_protected: Boolean, transformations__name__is_visible: Boolean, transformations__name__owner__id: ID, transformations__name__source__id: ID, transformations__name__value: String, transformations__name__values: [String], transformations__timeout__is_protected: Boolean, transformations__timeout__is_visible: Boolean, transformations__timeout__owner__id: ID, transformations__timeout__source__id: ID, transformations__timeout__value: BigInt, transformations__timeout__values: [BigInt]): PaginatedCoreReadOnlyRepository! + CoreRepository(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__class_name__is_protected: Boolean, checks__class_name__is_visible: Boolean, checks__class_name__owner__id: ID, checks__class_name__source__id: ID, checks__class_name__value: String, checks__class_name__values: [String], checks__description__is_protected: Boolean, checks__description__is_visible: Boolean, checks__description__owner__id: ID, checks__description__source__id: ID, checks__description__value: String, checks__description__values: [String], checks__file_path__is_protected: Boolean, checks__file_path__is_visible: Boolean, checks__file_path__owner__id: ID, checks__file_path__source__id: ID, checks__file_path__value: String, checks__file_path__values: [String], checks__ids: [ID], checks__isnull: Boolean, checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__parameters__is_protected: Boolean, checks__parameters__is_visible: Boolean, checks__parameters__owner__id: ID, checks__parameters__source__id: ID, checks__parameters__value: GenericScalar, checks__parameters__values: [GenericScalar], checks__timeout__is_protected: Boolean, checks__timeout__is_visible: Boolean, checks__timeout__owner__id: ID, checks__timeout__source__id: ID, checks__timeout__value: BigInt, checks__timeout__values: [BigInt], commit__is_protected: Boolean, commit__is_visible: Boolean, commit__isnull: Boolean, commit__owner__id: ID, commit__source__id: ID, commit__value: String, commit__values: [String], credential__description__is_protected: Boolean, credential__description__is_visible: Boolean, credential__description__owner__id: ID, credential__description__source__id: ID, credential__description__value: String, credential__description__values: [String], credential__ids: [ID], credential__isnull: Boolean, credential__label__is_protected: Boolean, credential__label__is_visible: Boolean, credential__label__owner__id: ID, credential__label__source__id: ID, credential__label__value: String, credential__label__values: [String], credential__name__is_protected: Boolean, credential__name__is_visible: Boolean, credential__name__owner__id: ID, credential__name__source__id: ID, credential__name__value: String, credential__name__values: [String], default_branch__is_protected: Boolean, default_branch__is_visible: Boolean, default_branch__isnull: Boolean, default_branch__owner__id: ID, default_branch__source__id: ID, default_branch__value: String, default_branch__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], generators__class_name__is_protected: Boolean, generators__class_name__is_visible: Boolean, generators__class_name__owner__id: ID, generators__class_name__source__id: ID, generators__class_name__value: String, generators__class_name__values: [String], generators__convert_query_response__is_protected: Boolean, generators__convert_query_response__is_visible: Boolean, generators__convert_query_response__owner__id: ID, generators__convert_query_response__source__id: ID, generators__convert_query_response__value: Boolean, generators__convert_query_response__values: [Boolean], generators__description__is_protected: Boolean, generators__description__is_visible: Boolean, generators__description__owner__id: ID, generators__description__source__id: ID, generators__description__value: String, generators__description__values: [String], generators__execute_after_merge__is_protected: Boolean, generators__execute_after_merge__is_visible: Boolean, generators__execute_after_merge__owner__id: ID, generators__execute_after_merge__source__id: ID, generators__execute_after_merge__value: Boolean, generators__execute_after_merge__values: [Boolean], generators__execute_in_proposed_change__is_protected: Boolean, generators__execute_in_proposed_change__is_visible: Boolean, generators__execute_in_proposed_change__owner__id: ID, generators__execute_in_proposed_change__source__id: ID, generators__execute_in_proposed_change__value: Boolean, generators__execute_in_proposed_change__values: [Boolean], generators__file_path__is_protected: Boolean, generators__file_path__is_visible: Boolean, generators__file_path__owner__id: ID, generators__file_path__source__id: ID, generators__file_path__value: String, generators__file_path__values: [String], generators__ids: [ID], generators__isnull: Boolean, generators__name__is_protected: Boolean, generators__name__is_visible: Boolean, generators__name__owner__id: ID, generators__name__source__id: ID, generators__name__value: String, generators__name__values: [String], generators__parameters__is_protected: Boolean, generators__parameters__is_visible: Boolean, generators__parameters__owner__id: ID, generators__parameters__source__id: ID, generators__parameters__value: GenericScalar, generators__parameters__values: [GenericScalar], groups_objects__content__is_protected: Boolean, groups_objects__content__is_visible: Boolean, groups_objects__content__owner__id: ID, groups_objects__content__source__id: ID, groups_objects__content__value: String, groups_objects__content__values: [String], groups_objects__description__is_protected: Boolean, groups_objects__description__is_visible: Boolean, groups_objects__description__owner__id: ID, groups_objects__description__source__id: ID, groups_objects__description__value: String, groups_objects__description__values: [String], groups_objects__group_type__is_protected: Boolean, groups_objects__group_type__is_visible: Boolean, groups_objects__group_type__owner__id: ID, groups_objects__group_type__source__id: ID, groups_objects__group_type__value: String, groups_objects__group_type__values: [String], groups_objects__ids: [ID], groups_objects__isnull: Boolean, groups_objects__label__is_protected: Boolean, groups_objects__label__is_visible: Boolean, groups_objects__label__owner__id: ID, groups_objects__label__source__id: ID, groups_objects__label__value: String, groups_objects__label__values: [String], groups_objects__name__is_protected: Boolean, groups_objects__name__is_visible: Boolean, groups_objects__name__owner__id: ID, groups_objects__name__source__id: ID, groups_objects__name__value: String, groups_objects__name__values: [String], hfid: [String], ids: [ID], internal_status__is_protected: Boolean, internal_status__is_visible: Boolean, internal_status__isnull: Boolean, internal_status__owner__id: ID, internal_status__source__id: ID, internal_status__value: String, internal_status__values: [String], limit: NonNegativeInt, location__is_protected: Boolean, location__is_visible: Boolean, location__isnull: Boolean, location__owner__id: ID, location__source__id: ID, location__value: String, location__values: [String], member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, operational_status__is_protected: Boolean, operational_status__is_visible: Boolean, operational_status__isnull: Boolean, operational_status__owner__id: ID, operational_status__source__id: ID, operational_status__value: String, operational_status__values: [String], order: OrderInput, partial_match: Boolean, queries__depth__is_protected: Boolean, queries__depth__is_visible: Boolean, queries__depth__owner__id: ID, queries__depth__source__id: ID, queries__depth__value: BigInt, queries__depth__values: [BigInt], queries__description__is_protected: Boolean, queries__description__is_visible: Boolean, queries__description__owner__id: ID, queries__description__source__id: ID, queries__description__value: String, queries__description__values: [String], queries__height__is_protected: Boolean, queries__height__is_visible: Boolean, queries__height__owner__id: ID, queries__height__source__id: ID, queries__height__value: BigInt, queries__height__values: [BigInt], queries__ids: [ID], queries__isnull: Boolean, queries__models__is_protected: Boolean, queries__models__is_visible: Boolean, queries__models__owner__id: ID, queries__models__source__id: ID, queries__models__value: GenericScalar, queries__models__values: [GenericScalar], queries__name__is_protected: Boolean, queries__name__is_visible: Boolean, queries__name__owner__id: ID, queries__name__source__id: ID, queries__name__value: String, queries__name__values: [String], queries__operations__is_protected: Boolean, queries__operations__is_visible: Boolean, queries__operations__owner__id: ID, queries__operations__source__id: ID, queries__operations__value: GenericScalar, queries__operations__values: [GenericScalar], queries__query__is_protected: Boolean, queries__query__is_visible: Boolean, queries__query__owner__id: ID, queries__query__source__id: ID, queries__query__value: String, queries__query__values: [String], queries__variables__is_protected: Boolean, queries__variables__is_visible: Boolean, queries__variables__owner__id: ID, queries__variables__source__id: ID, queries__variables__value: GenericScalar, queries__variables__values: [GenericScalar], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], sync_status__is_protected: Boolean, sync_status__is_visible: Boolean, sync_status__isnull: Boolean, sync_status__owner__id: ID, sync_status__source__id: ID, sync_status__value: String, sync_status__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], transformations__description__is_protected: Boolean, transformations__description__is_visible: Boolean, transformations__description__owner__id: ID, transformations__description__source__id: ID, transformations__description__value: String, transformations__description__values: [String], transformations__ids: [ID], transformations__isnull: Boolean, transformations__label__is_protected: Boolean, transformations__label__is_visible: Boolean, transformations__label__owner__id: ID, transformations__label__source__id: ID, transformations__label__value: String, transformations__label__values: [String], transformations__name__is_protected: Boolean, transformations__name__is_visible: Boolean, transformations__name__owner__id: ID, transformations__name__source__id: ID, transformations__name__value: String, transformations__name__values: [String], transformations__timeout__is_protected: Boolean, transformations__timeout__is_visible: Boolean, transformations__timeout__owner__id: ID, transformations__timeout__source__id: ID, transformations__timeout__value: BigInt, transformations__timeout__values: [BigInt]): PaginatedCoreRepository! + CoreRepositoryGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], content__is_protected: Boolean, content__is_visible: Boolean, content__isnull: Boolean, content__owner__id: ID, content__source__id: ID, content__value: String, content__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreRepositoryGroup! + CoreRepositoryValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreRepositoryValidator! + CoreResourcePool(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreResourcePool! + CoreSchemaCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], conflicts__is_protected: Boolean, conflicts__is_visible: Boolean, conflicts__isnull: Boolean, conflicts__owner__id: ID, conflicts__source__id: ID, conflicts__value: GenericScalar, conflicts__values: [GenericScalar], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], enriched_conflict_id__is_protected: Boolean, enriched_conflict_id__is_visible: Boolean, enriched_conflict_id__isnull: Boolean, enriched_conflict_id__owner__id: ID, enriched_conflict_id__source__id: ID, enriched_conflict_id__value: String, enriched_conflict_id__values: [String], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreSchemaCheck! + CoreSchemaValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreSchemaValidator! + CoreStandardCheck(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], ids: [ID], kind__is_protected: Boolean, kind__is_visible: Boolean, kind__isnull: Boolean, kind__owner__id: ID, kind__source__id: ID, kind__value: String, kind__values: [String], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], message__is_protected: Boolean, message__is_visible: Boolean, message__isnull: Boolean, message__owner__id: ID, message__source__id: ID, message__value: String, message__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, origin__is_protected: Boolean, origin__is_visible: Boolean, origin__isnull: Boolean, origin__owner__id: ID, origin__source__id: ID, origin__value: String, origin__values: [String], partial_match: Boolean, severity__is_protected: Boolean, severity__is_visible: Boolean, severity__isnull: Boolean, severity__owner__id: ID, severity__source__id: ID, severity__value: String, severity__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], validator__completed_at__is_protected: Boolean, validator__completed_at__is_visible: Boolean, validator__completed_at__owner__id: ID, validator__completed_at__source__id: ID, validator__completed_at__value: DateTime, validator__completed_at__values: [DateTime], validator__conclusion__is_protected: Boolean, validator__conclusion__is_visible: Boolean, validator__conclusion__owner__id: ID, validator__conclusion__source__id: ID, validator__conclusion__value: String, validator__conclusion__values: [String], validator__ids: [ID], validator__isnull: Boolean, validator__label__is_protected: Boolean, validator__label__is_visible: Boolean, validator__label__owner__id: ID, validator__label__source__id: ID, validator__label__value: String, validator__label__values: [String], validator__started_at__is_protected: Boolean, validator__started_at__is_visible: Boolean, validator__started_at__owner__id: ID, validator__started_at__source__id: ID, validator__started_at__value: DateTime, validator__started_at__values: [DateTime], validator__state__is_protected: Boolean, validator__state__is_visible: Boolean, validator__state__owner__id: ID, validator__state__source__id: ID, validator__state__value: String, validator__state__values: [String]): PaginatedCoreStandardCheck! + CoreStandardGroup(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], children__description__is_protected: Boolean, children__description__is_visible: Boolean, children__description__owner__id: ID, children__description__source__id: ID, children__description__value: String, children__description__values: [String], children__group_type__is_protected: Boolean, children__group_type__is_visible: Boolean, children__group_type__owner__id: ID, children__group_type__source__id: ID, children__group_type__value: String, children__group_type__values: [String], children__ids: [ID], children__isnull: Boolean, children__label__is_protected: Boolean, children__label__is_visible: Boolean, children__label__owner__id: ID, children__label__source__id: ID, children__label__value: String, children__label__values: [String], children__name__is_protected: Boolean, children__name__is_visible: Boolean, children__name__owner__id: ID, children__name__source__id: ID, children__name__value: String, children__name__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], group_type__is_protected: Boolean, group_type__is_visible: Boolean, group_type__isnull: Boolean, group_type__owner__id: ID, group_type__source__id: ID, group_type__value: String, group_type__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, members__ids: [ID], members__isnull: Boolean, name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, parent__description__is_protected: Boolean, parent__description__is_visible: Boolean, parent__description__owner__id: ID, parent__description__source__id: ID, parent__description__value: String, parent__description__values: [String], parent__group_type__is_protected: Boolean, parent__group_type__is_visible: Boolean, parent__group_type__owner__id: ID, parent__group_type__source__id: ID, parent__group_type__value: String, parent__group_type__values: [String], parent__ids: [ID], parent__isnull: Boolean, parent__label__is_protected: Boolean, parent__label__is_visible: Boolean, parent__label__owner__id: ID, parent__label__source__id: ID, parent__label__value: String, parent__label__values: [String], parent__name__is_protected: Boolean, parent__name__is_visible: Boolean, parent__name__owner__id: ID, parent__name__source__id: ID, parent__name__value: String, parent__name__values: [String], partial_match: Boolean, subscribers__ids: [ID], subscribers__isnull: Boolean): PaginatedCoreStandardGroup! + CoreStandardWebhook(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], event_type__is_protected: Boolean, event_type__is_visible: Boolean, event_type__isnull: Boolean, event_type__owner__id: ID, event_type__source__id: ID, event_type__value: String, event_type__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, shared_key__is_protected: Boolean, shared_key__is_visible: Boolean, shared_key__isnull: Boolean, shared_key__owner__id: ID, shared_key__source__id: ID, shared_key__value: String, shared_key__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], url__is_protected: Boolean, url__is_visible: Boolean, url__isnull: Boolean, url__owner__id: ID, url__source__id: ID, url__value: String, url__values: [String], validate_certificates__is_protected: Boolean, validate_certificates__is_visible: Boolean, validate_certificates__isnull: Boolean, validate_certificates__owner__id: ID, validate_certificates__source__id: ID, validate_certificates__value: Boolean, validate_certificates__values: [Boolean]): PaginatedCoreStandardWebhook! + CoreTaskTarget(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreTaskTarget! + CoreThread(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], change__description__is_protected: Boolean, change__description__is_visible: Boolean, change__description__owner__id: ID, change__description__source__id: ID, change__description__value: String, change__description__values: [String], change__destination_branch__is_protected: Boolean, change__destination_branch__is_visible: Boolean, change__destination_branch__owner__id: ID, change__destination_branch__source__id: ID, change__destination_branch__value: String, change__destination_branch__values: [String], change__ids: [ID], change__is_draft__is_protected: Boolean, change__is_draft__is_visible: Boolean, change__is_draft__owner__id: ID, change__is_draft__source__id: ID, change__is_draft__value: Boolean, change__is_draft__values: [Boolean], change__isnull: Boolean, change__name__is_protected: Boolean, change__name__is_visible: Boolean, change__name__owner__id: ID, change__name__source__id: ID, change__name__value: String, change__name__values: [String], change__source_branch__is_protected: Boolean, change__source_branch__is_visible: Boolean, change__source_branch__owner__id: ID, change__source_branch__source__id: ID, change__source_branch__value: String, change__source_branch__values: [String], change__state__is_protected: Boolean, change__state__is_visible: Boolean, change__state__owner__id: ID, change__state__source__id: ID, change__state__value: String, change__state__values: [String], change__total_comments__is_protected: Boolean, change__total_comments__is_visible: Boolean, change__total_comments__owner__id: ID, change__total_comments__source__id: ID, change__total_comments__value: BigInt, change__total_comments__values: [BigInt], comments__created_at__is_protected: Boolean, comments__created_at__is_visible: Boolean, comments__created_at__owner__id: ID, comments__created_at__source__id: ID, comments__created_at__value: DateTime, comments__created_at__values: [DateTime], comments__ids: [ID], comments__isnull: Boolean, comments__text__is_protected: Boolean, comments__text__is_visible: Boolean, comments__text__owner__id: ID, comments__text__source__id: ID, comments__text__value: String, comments__text__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, resolved__is_protected: Boolean, resolved__is_visible: Boolean, resolved__isnull: Boolean, resolved__owner__id: ID, resolved__source__id: ID, resolved__value: Boolean, resolved__values: [Boolean], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreThread! + CoreThreadComment(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], created_at__is_protected: Boolean, created_at__is_visible: Boolean, created_at__isnull: Boolean, created_at__owner__id: ID, created_at__source__id: ID, created_at__value: DateTime, created_at__values: [DateTime], created_by__account_type__is_protected: Boolean, created_by__account_type__is_visible: Boolean, created_by__account_type__owner__id: ID, created_by__account_type__source__id: ID, created_by__account_type__value: String, created_by__account_type__values: [String], created_by__description__is_protected: Boolean, created_by__description__is_visible: Boolean, created_by__description__owner__id: ID, created_by__description__source__id: ID, created_by__description__value: String, created_by__description__values: [String], created_by__ids: [ID], created_by__isnull: Boolean, created_by__label__is_protected: Boolean, created_by__label__is_visible: Boolean, created_by__label__owner__id: ID, created_by__label__source__id: ID, created_by__label__value: String, created_by__label__values: [String], created_by__name__is_protected: Boolean, created_by__name__is_visible: Boolean, created_by__name__owner__id: ID, created_by__name__source__id: ID, created_by__name__value: String, created_by__name__values: [String], created_by__password__is_protected: Boolean, created_by__password__is_visible: Boolean, created_by__password__owner__id: ID, created_by__password__source__id: ID, created_by__password__value: String, created_by__password__values: [String], created_by__status__is_protected: Boolean, created_by__status__is_visible: Boolean, created_by__status__owner__id: ID, created_by__status__source__id: ID, created_by__status__value: String, created_by__status__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], text__is_protected: Boolean, text__is_visible: Boolean, text__isnull: Boolean, text__owner__id: ID, text__source__id: ID, text__value: String, text__values: [String], thread__created_at__is_protected: Boolean, thread__created_at__is_visible: Boolean, thread__created_at__owner__id: ID, thread__created_at__source__id: ID, thread__created_at__value: DateTime, thread__created_at__values: [DateTime], thread__ids: [ID], thread__isnull: Boolean, thread__label__is_protected: Boolean, thread__label__is_visible: Boolean, thread__label__owner__id: ID, thread__label__source__id: ID, thread__label__value: String, thread__label__values: [String], thread__resolved__is_protected: Boolean, thread__resolved__is_visible: Boolean, thread__resolved__owner__id: ID, thread__resolved__source__id: ID, thread__resolved__value: Boolean, thread__resolved__values: [Boolean]): PaginatedCoreThreadComment! + CoreTransformJinja2(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], template_path__is_protected: Boolean, template_path__is_visible: Boolean, template_path__isnull: Boolean, template_path__owner__id: ID, template_path__source__id: ID, template_path__value: String, template_path__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreTransformJinja2! + CoreTransformPython(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], class_name__is_protected: Boolean, class_name__is_visible: Boolean, class_name__isnull: Boolean, class_name__owner__id: ID, class_name__source__id: ID, class_name__value: String, class_name__values: [String], convert_query_response__is_protected: Boolean, convert_query_response__is_visible: Boolean, convert_query_response__isnull: Boolean, convert_query_response__owner__id: ID, convert_query_response__source__id: ID, convert_query_response__value: Boolean, convert_query_response__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], file_path__is_protected: Boolean, file_path__is_visible: Boolean, file_path__isnull: Boolean, file_path__owner__id: ID, file_path__source__id: ID, file_path__value: String, file_path__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreTransformPython! + CoreTransformation(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, query__depth__is_protected: Boolean, query__depth__is_visible: Boolean, query__depth__owner__id: ID, query__depth__source__id: ID, query__depth__value: BigInt, query__depth__values: [BigInt], query__description__is_protected: Boolean, query__description__is_visible: Boolean, query__description__owner__id: ID, query__description__source__id: ID, query__description__value: String, query__description__values: [String], query__height__is_protected: Boolean, query__height__is_visible: Boolean, query__height__owner__id: ID, query__height__source__id: ID, query__height__value: BigInt, query__height__values: [BigInt], query__ids: [ID], query__isnull: Boolean, query__models__is_protected: Boolean, query__models__is_visible: Boolean, query__models__owner__id: ID, query__models__source__id: ID, query__models__value: GenericScalar, query__models__values: [GenericScalar], query__name__is_protected: Boolean, query__name__is_visible: Boolean, query__name__owner__id: ID, query__name__source__id: ID, query__name__value: String, query__name__values: [String], query__operations__is_protected: Boolean, query__operations__is_visible: Boolean, query__operations__owner__id: ID, query__operations__source__id: ID, query__operations__value: GenericScalar, query__operations__values: [GenericScalar], query__query__is_protected: Boolean, query__query__is_visible: Boolean, query__query__owner__id: ID, query__query__source__id: ID, query__query__value: String, query__query__values: [String], query__variables__is_protected: Boolean, query__variables__is_visible: Boolean, query__variables__owner__id: ID, query__variables__source__id: ID, query__variables__value: GenericScalar, query__variables__values: [GenericScalar], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], tags__description__is_protected: Boolean, tags__description__is_visible: Boolean, tags__description__owner__id: ID, tags__description__source__id: ID, tags__description__value: String, tags__description__values: [String], tags__ids: [ID], tags__isnull: Boolean, tags__name__is_protected: Boolean, tags__name__is_visible: Boolean, tags__name__owner__id: ID, tags__name__source__id: ID, tags__name__value: String, tags__name__values: [String], timeout__is_protected: Boolean, timeout__is_visible: Boolean, timeout__isnull: Boolean, timeout__owner__id: ID, timeout__source__id: ID, timeout__value: BigInt, timeout__values: [BigInt]): PaginatedCoreTransformation! + CoreTriggerRule(action__description__is_protected: Boolean, action__description__is_visible: Boolean, action__description__owner__id: ID, action__description__source__id: ID, action__description__value: String, action__description__values: [String], action__ids: [ID], action__isnull: Boolean, action__name__is_protected: Boolean, action__name__is_visible: Boolean, action__name__owner__id: ID, action__name__source__id: ID, action__name__value: String, action__name__values: [String], active__is_protected: Boolean, active__is_visible: Boolean, active__isnull: Boolean, active__owner__id: ID, active__source__id: ID, active__value: Boolean, active__values: [Boolean], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreTriggerRule! + CoreUserValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], check_definition__class_name__is_protected: Boolean, check_definition__class_name__is_visible: Boolean, check_definition__class_name__owner__id: ID, check_definition__class_name__source__id: ID, check_definition__class_name__value: String, check_definition__class_name__values: [String], check_definition__description__is_protected: Boolean, check_definition__description__is_visible: Boolean, check_definition__description__owner__id: ID, check_definition__description__source__id: ID, check_definition__description__value: String, check_definition__description__values: [String], check_definition__file_path__is_protected: Boolean, check_definition__file_path__is_visible: Boolean, check_definition__file_path__owner__id: ID, check_definition__file_path__source__id: ID, check_definition__file_path__value: String, check_definition__file_path__values: [String], check_definition__ids: [ID], check_definition__isnull: Boolean, check_definition__name__is_protected: Boolean, check_definition__name__is_visible: Boolean, check_definition__name__owner__id: ID, check_definition__name__source__id: ID, check_definition__name__value: String, check_definition__name__values: [String], check_definition__parameters__is_protected: Boolean, check_definition__parameters__is_visible: Boolean, check_definition__parameters__owner__id: ID, check_definition__parameters__source__id: ID, check_definition__parameters__value: GenericScalar, check_definition__parameters__values: [GenericScalar], check_definition__timeout__is_protected: Boolean, check_definition__timeout__is_visible: Boolean, check_definition__timeout__owner__id: ID, check_definition__timeout__source__id: ID, check_definition__timeout__value: BigInt, check_definition__timeout__values: [BigInt], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], repository__description__is_protected: Boolean, repository__description__is_visible: Boolean, repository__description__owner__id: ID, repository__description__source__id: ID, repository__description__value: String, repository__description__values: [String], repository__ids: [ID], repository__internal_status__is_protected: Boolean, repository__internal_status__is_visible: Boolean, repository__internal_status__owner__id: ID, repository__internal_status__source__id: ID, repository__internal_status__value: String, repository__internal_status__values: [String], repository__isnull: Boolean, repository__location__is_protected: Boolean, repository__location__is_visible: Boolean, repository__location__owner__id: ID, repository__location__source__id: ID, repository__location__value: String, repository__location__values: [String], repository__name__is_protected: Boolean, repository__name__is_visible: Boolean, repository__name__owner__id: ID, repository__name__source__id: ID, repository__name__value: String, repository__name__values: [String], repository__operational_status__is_protected: Boolean, repository__operational_status__is_visible: Boolean, repository__operational_status__owner__id: ID, repository__operational_status__source__id: ID, repository__operational_status__value: String, repository__operational_status__values: [String], repository__sync_status__is_protected: Boolean, repository__sync_status__is_visible: Boolean, repository__sync_status__owner__id: ID, repository__sync_status__source__id: ID, repository__sync_status__value: String, repository__sync_status__values: [String], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreUserValidator! + CoreValidator(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], checks__conclusion__is_protected: Boolean, checks__conclusion__is_visible: Boolean, checks__conclusion__owner__id: ID, checks__conclusion__source__id: ID, checks__conclusion__value: String, checks__conclusion__values: [String], checks__created_at__is_protected: Boolean, checks__created_at__is_visible: Boolean, checks__created_at__owner__id: ID, checks__created_at__source__id: ID, checks__created_at__value: DateTime, checks__created_at__values: [DateTime], checks__ids: [ID], checks__isnull: Boolean, checks__kind__is_protected: Boolean, checks__kind__is_visible: Boolean, checks__kind__owner__id: ID, checks__kind__source__id: ID, checks__kind__value: String, checks__kind__values: [String], checks__label__is_protected: Boolean, checks__label__is_visible: Boolean, checks__label__owner__id: ID, checks__label__source__id: ID, checks__label__value: String, checks__label__values: [String], checks__message__is_protected: Boolean, checks__message__is_visible: Boolean, checks__message__owner__id: ID, checks__message__source__id: ID, checks__message__value: String, checks__message__values: [String], checks__name__is_protected: Boolean, checks__name__is_visible: Boolean, checks__name__owner__id: ID, checks__name__source__id: ID, checks__name__value: String, checks__name__values: [String], checks__origin__is_protected: Boolean, checks__origin__is_visible: Boolean, checks__origin__owner__id: ID, checks__origin__source__id: ID, checks__origin__value: String, checks__origin__values: [String], checks__severity__is_protected: Boolean, checks__severity__is_visible: Boolean, checks__severity__owner__id: ID, checks__severity__source__id: ID, checks__severity__value: String, checks__severity__values: [String], completed_at__is_protected: Boolean, completed_at__is_visible: Boolean, completed_at__isnull: Boolean, completed_at__owner__id: ID, completed_at__source__id: ID, completed_at__value: DateTime, completed_at__values: [DateTime], conclusion__is_protected: Boolean, conclusion__is_visible: Boolean, conclusion__isnull: Boolean, conclusion__owner__id: ID, conclusion__source__id: ID, conclusion__value: String, conclusion__values: [String], ids: [ID], label__is_protected: Boolean, label__is_visible: Boolean, label__isnull: Boolean, label__owner__id: ID, label__source__id: ID, label__value: String, label__values: [String], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, proposed_change__description__is_protected: Boolean, proposed_change__description__is_visible: Boolean, proposed_change__description__owner__id: ID, proposed_change__description__source__id: ID, proposed_change__description__value: String, proposed_change__description__values: [String], proposed_change__destination_branch__is_protected: Boolean, proposed_change__destination_branch__is_visible: Boolean, proposed_change__destination_branch__owner__id: ID, proposed_change__destination_branch__source__id: ID, proposed_change__destination_branch__value: String, proposed_change__destination_branch__values: [String], proposed_change__ids: [ID], proposed_change__is_draft__is_protected: Boolean, proposed_change__is_draft__is_visible: Boolean, proposed_change__is_draft__owner__id: ID, proposed_change__is_draft__source__id: ID, proposed_change__is_draft__value: Boolean, proposed_change__is_draft__values: [Boolean], proposed_change__isnull: Boolean, proposed_change__name__is_protected: Boolean, proposed_change__name__is_visible: Boolean, proposed_change__name__owner__id: ID, proposed_change__name__source__id: ID, proposed_change__name__value: String, proposed_change__name__values: [String], proposed_change__source_branch__is_protected: Boolean, proposed_change__source_branch__is_visible: Boolean, proposed_change__source_branch__owner__id: ID, proposed_change__source_branch__source__id: ID, proposed_change__source_branch__value: String, proposed_change__source_branch__values: [String], proposed_change__state__is_protected: Boolean, proposed_change__state__is_visible: Boolean, proposed_change__state__owner__id: ID, proposed_change__state__source__id: ID, proposed_change__state__value: String, proposed_change__state__values: [String], proposed_change__total_comments__is_protected: Boolean, proposed_change__total_comments__is_visible: Boolean, proposed_change__total_comments__owner__id: ID, proposed_change__total_comments__source__id: ID, proposed_change__total_comments__value: BigInt, proposed_change__total_comments__values: [BigInt], started_at__is_protected: Boolean, started_at__is_visible: Boolean, started_at__isnull: Boolean, started_at__owner__id: ID, started_at__source__id: ID, started_at__value: DateTime, started_at__values: [DateTime], state__is_protected: Boolean, state__is_visible: Boolean, state__isnull: Boolean, state__owner__id: ID, state__source__id: ID, state__value: String, state__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreValidator! + CoreWebhook(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], branch_scope__is_protected: Boolean, branch_scope__is_visible: Boolean, branch_scope__isnull: Boolean, branch_scope__owner__id: ID, branch_scope__source__id: ID, branch_scope__value: String, branch_scope__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], event_type__is_protected: Boolean, event_type__is_visible: Boolean, event_type__isnull: Boolean, event_type__owner__id: ID, event_type__source__id: ID, event_type__value: String, event_type__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], node_kind__is_protected: Boolean, node_kind__is_visible: Boolean, node_kind__isnull: Boolean, node_kind__owner__id: ID, node_kind__source__id: ID, node_kind__value: String, node_kind__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String], url__is_protected: Boolean, url__is_visible: Boolean, url__isnull: Boolean, url__owner__id: ID, url__source__id: ID, url__value: String, url__values: [String], validate_certificates__is_protected: Boolean, validate_certificates__is_visible: Boolean, validate_certificates__isnull: Boolean, validate_certificates__owner__id: ID, validate_certificates__source__id: ID, validate_certificates__value: Boolean, validate_certificates__values: [Boolean]): PaginatedCoreWebhook! + CoreWeightedPoolResource(allocation_weight__is_protected: Boolean, allocation_weight__is_visible: Boolean, allocation_weight__isnull: Boolean, allocation_weight__owner__id: ID, allocation_weight__source__id: ID, allocation_weight__value: BigInt, allocation_weight__values: [BigInt], any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedCoreWeightedPoolResource! + DiffTree(branch: String, filters: DiffTreeQueryFilters, from_time: DateTime, include_parents: Boolean, limit: NonNegativeInt, name: String, offset: NonNegativeInt, root_node_uuids: [String] @deprecated(reason: "replaced by filters"), to_time: DateTime): DiffTree DiffTreeSummary(branch: String, filters: DiffTreeQueryFilters, from_time: DateTime, name: String, to_time: DateTime): DiffTreeSummary """Retrieve fields mapping for converting object type""" FieldsMappingTypeConversion(source_kind: String, target_kind: String): FieldsMapping! IPAddressGetNextAvailable(prefix_id: String!, prefix_length: Int): IPAddressGetNextAvailable! @deprecated(reason: "This query has been renamed to 'InfrahubIPAddressGetNextAvailable'. It will be removed in the next version of Infrahub.") IPPrefixGetNextAvailable(prefix_id: String!, prefix_length: Int): IPPrefixGetNextAvailable! @deprecated(reason: "This query has been renamed to 'InfrahubIPPrefixGetNextAvailable'. It will be removed in the next version of Infrahub.") - InfrahubAccountToken(limit: Int, offset: Int): AccountTokenEdges! + InfrahubAccountToken(limit: NonNegativeInt, offset: NonNegativeInt): AccountTokenEdges! """Retrieve paginated information about active branches.""" - InfrahubBranch(limit: Int, offset: Int): InfrahubBranchType! + InfrahubBranch(limit: NonNegativeInt, offset: NonNegativeInt): InfrahubBranchType! InfrahubEvent( """Filter the query to specific accounts""" account__ids: [String!] @@ -10808,8 +10816,8 @@ type Query { has_children: Boolean ids: [String!] level: Int - limit: Int - offset: Int + limit: NonNegativeInt + offset: NonNegativeInt """Sort order of the events, defaults to descending order""" order: EventSortOrder = DESC """ @@ -10829,24 +10837,24 @@ type Query { InfrahubIPPrefixGetNextAvailable(prefix_id: String!, prefix_length: Int): IPPrefixGetNextAvailable! InfrahubInfo: Info! InfrahubPermissions: AccountPermissionsEdges! - InfrahubResourcePoolAllocated(limit: Int, offset: Int, pool_id: String!, resource_id: String!): PoolAllocated! + InfrahubResourcePoolAllocated(limit: NonNegativeInt, offset: NonNegativeInt, pool_id: String!, resource_id: String!): PoolAllocated! InfrahubResourcePoolUtilization(pool_id: String!): PoolUtilization! - InfrahubSearchAnywhere(limit: Int, partial_match: Boolean, q: String!): NodeEdges! + InfrahubSearchAnywhere(limit: NonNegativeInt, partial_match: Boolean, q: String!): NodeEdges! """Retrieve the status of all infrahub workers.""" InfrahubStatus: Status! - InfrahubTask(branch: String, ids: [String], limit: Int, log_limit: Int, log_offset: Int, offset: Int, q: String, related_node__ids: [String], state: [StateType], workflow: [String]): Tasks! + InfrahubTask(branch: String, ids: [String], limit: NonNegativeInt, log_limit: NonNegativeInt, log_offset: NonNegativeInt, offset: NonNegativeInt, q: String, related_node__ids: [String], state: [StateType], workflow: [String]): Tasks! """ Return the list of all pending or running tasks that can modify the data, for a given branch """ InfrahubTaskBranchStatus(branch: String): Tasks! - IpamNamespace(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], default__is_protected: Boolean, default__is_visible: Boolean, default__isnull: Boolean, default__owner__id: ID, default__source__id: ID, default__value: Boolean, default__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_addresses__address__is_protected: Boolean, ip_addresses__address__is_visible: Boolean, ip_addresses__address__owner__id: ID, ip_addresses__address__source__id: ID, ip_addresses__address__value: String, ip_addresses__address__values: [String], ip_addresses__description__is_protected: Boolean, ip_addresses__description__is_visible: Boolean, ip_addresses__description__owner__id: ID, ip_addresses__description__source__id: ID, ip_addresses__description__value: String, ip_addresses__description__values: [String], ip_addresses__ids: [ID], ip_addresses__isnull: Boolean, ip_prefixes__broadcast_address__is_protected: Boolean, ip_prefixes__broadcast_address__is_visible: Boolean, ip_prefixes__broadcast_address__owner__id: ID, ip_prefixes__broadcast_address__source__id: ID, ip_prefixes__broadcast_address__value: String, ip_prefixes__broadcast_address__values: [String], ip_prefixes__description__is_protected: Boolean, ip_prefixes__description__is_visible: Boolean, ip_prefixes__description__owner__id: ID, ip_prefixes__description__source__id: ID, ip_prefixes__description__value: String, ip_prefixes__description__values: [String], ip_prefixes__hostmask__is_protected: Boolean, ip_prefixes__hostmask__is_visible: Boolean, ip_prefixes__hostmask__owner__id: ID, ip_prefixes__hostmask__source__id: ID, ip_prefixes__hostmask__value: String, ip_prefixes__hostmask__values: [String], ip_prefixes__ids: [ID], ip_prefixes__is_pool__is_protected: Boolean, ip_prefixes__is_pool__is_visible: Boolean, ip_prefixes__is_pool__owner__id: ID, ip_prefixes__is_pool__source__id: ID, ip_prefixes__is_pool__value: Boolean, ip_prefixes__is_pool__values: [Boolean], ip_prefixes__is_top_level__is_protected: Boolean, ip_prefixes__is_top_level__is_visible: Boolean, ip_prefixes__is_top_level__owner__id: ID, ip_prefixes__is_top_level__source__id: ID, ip_prefixes__is_top_level__value: Boolean, ip_prefixes__is_top_level__values: [Boolean], ip_prefixes__isnull: Boolean, ip_prefixes__member_type__is_protected: Boolean, ip_prefixes__member_type__is_visible: Boolean, ip_prefixes__member_type__owner__id: ID, ip_prefixes__member_type__source__id: ID, ip_prefixes__member_type__value: String, ip_prefixes__member_type__values: [String], ip_prefixes__netmask__is_protected: Boolean, ip_prefixes__netmask__is_visible: Boolean, ip_prefixes__netmask__owner__id: ID, ip_prefixes__netmask__source__id: ID, ip_prefixes__netmask__value: String, ip_prefixes__netmask__values: [String], ip_prefixes__network_address__is_protected: Boolean, ip_prefixes__network_address__is_visible: Boolean, ip_prefixes__network_address__owner__id: ID, ip_prefixes__network_address__source__id: ID, ip_prefixes__network_address__value: String, ip_prefixes__network_address__values: [String], ip_prefixes__prefix__is_protected: Boolean, ip_prefixes__prefix__is_visible: Boolean, ip_prefixes__prefix__owner__id: ID, ip_prefixes__prefix__source__id: ID, ip_prefixes__prefix__value: String, ip_prefixes__prefix__values: [String], ip_prefixes__utilization__is_protected: Boolean, ip_prefixes__utilization__is_visible: Boolean, ip_prefixes__utilization__owner__id: ID, ip_prefixes__utilization__source__id: ID, ip_prefixes__utilization__value: BigInt, ip_prefixes__utilization__values: [BigInt], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedIpamNamespace! - LineageOwner(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: Int, offset: Int, order: OrderInput, partial_match: Boolean): PaginatedLineageOwner! - LineageSource(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: Int, offset: Int, order: OrderInput, partial_match: Boolean): PaginatedLineageSource! - ProfileBuiltinIPAddress(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__address__is_protected: Boolean, related_nodes__address__is_visible: Boolean, related_nodes__address__owner__id: ID, related_nodes__address__source__id: ID, related_nodes__address__value: String, related_nodes__address__values: [String], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__ids: [ID], related_nodes__isnull: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileBuiltinIPAddress! - ProfileBuiltinIPPrefix(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__isnull: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__isnull: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__broadcast_address__is_protected: Boolean, related_nodes__broadcast_address__is_visible: Boolean, related_nodes__broadcast_address__owner__id: ID, related_nodes__broadcast_address__source__id: ID, related_nodes__broadcast_address__value: String, related_nodes__broadcast_address__values: [String], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__hostmask__is_protected: Boolean, related_nodes__hostmask__is_visible: Boolean, related_nodes__hostmask__owner__id: ID, related_nodes__hostmask__source__id: ID, related_nodes__hostmask__value: String, related_nodes__hostmask__values: [String], related_nodes__ids: [ID], related_nodes__is_pool__is_protected: Boolean, related_nodes__is_pool__is_visible: Boolean, related_nodes__is_pool__owner__id: ID, related_nodes__is_pool__source__id: ID, related_nodes__is_pool__value: Boolean, related_nodes__is_pool__values: [Boolean], related_nodes__is_top_level__is_protected: Boolean, related_nodes__is_top_level__is_visible: Boolean, related_nodes__is_top_level__owner__id: ID, related_nodes__is_top_level__source__id: ID, related_nodes__is_top_level__value: Boolean, related_nodes__is_top_level__values: [Boolean], related_nodes__isnull: Boolean, related_nodes__member_type__is_protected: Boolean, related_nodes__member_type__is_visible: Boolean, related_nodes__member_type__owner__id: ID, related_nodes__member_type__source__id: ID, related_nodes__member_type__value: String, related_nodes__member_type__values: [String], related_nodes__netmask__is_protected: Boolean, related_nodes__netmask__is_visible: Boolean, related_nodes__netmask__owner__id: ID, related_nodes__netmask__source__id: ID, related_nodes__netmask__value: String, related_nodes__netmask__values: [String], related_nodes__network_address__is_protected: Boolean, related_nodes__network_address__is_visible: Boolean, related_nodes__network_address__owner__id: ID, related_nodes__network_address__source__id: ID, related_nodes__network_address__value: String, related_nodes__network_address__values: [String], related_nodes__prefix__is_protected: Boolean, related_nodes__prefix__is_visible: Boolean, related_nodes__prefix__owner__id: ID, related_nodes__prefix__source__id: ID, related_nodes__prefix__value: String, related_nodes__prefix__values: [String], related_nodes__utilization__is_protected: Boolean, related_nodes__utilization__is_visible: Boolean, related_nodes__utilization__owner__id: ID, related_nodes__utilization__source__id: ID, related_nodes__utilization__value: BigInt, related_nodes__utilization__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileBuiltinIPPrefix! - ProfileBuiltinTag(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__ids: [ID], related_nodes__isnull: Boolean, related_nodes__name__is_protected: Boolean, related_nodes__name__is_visible: Boolean, related_nodes__name__owner__id: ID, related_nodes__name__source__id: ID, related_nodes__name__value: String, related_nodes__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileBuiltinTag! - ProfileIpamNamespace(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: Int, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: Int, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__default__is_protected: Boolean, related_nodes__default__is_visible: Boolean, related_nodes__default__owner__id: ID, related_nodes__default__source__id: ID, related_nodes__default__value: Boolean, related_nodes__default__values: [Boolean], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__ids: [ID], related_nodes__isnull: Boolean, related_nodes__name__is_protected: Boolean, related_nodes__name__is_visible: Boolean, related_nodes__name__owner__id: ID, related_nodes__name__source__id: ID, related_nodes__name__value: String, related_nodes__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileIpamNamespace! - Relationship(excluded_namespaces: [String], ids: [String!]!, limit: Int, offset: Int): Relationships! + IpamNamespace(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], default__is_protected: Boolean, default__is_visible: Boolean, default__isnull: Boolean, default__owner__id: ID, default__source__id: ID, default__value: Boolean, default__values: [Boolean], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], ip_addresses__address__is_protected: Boolean, ip_addresses__address__is_visible: Boolean, ip_addresses__address__owner__id: ID, ip_addresses__address__source__id: ID, ip_addresses__address__value: String, ip_addresses__address__values: [String], ip_addresses__description__is_protected: Boolean, ip_addresses__description__is_visible: Boolean, ip_addresses__description__owner__id: ID, ip_addresses__description__source__id: ID, ip_addresses__description__value: String, ip_addresses__description__values: [String], ip_addresses__ids: [ID], ip_addresses__isnull: Boolean, ip_prefixes__broadcast_address__is_protected: Boolean, ip_prefixes__broadcast_address__is_visible: Boolean, ip_prefixes__broadcast_address__owner__id: ID, ip_prefixes__broadcast_address__source__id: ID, ip_prefixes__broadcast_address__value: String, ip_prefixes__broadcast_address__values: [String], ip_prefixes__description__is_protected: Boolean, ip_prefixes__description__is_visible: Boolean, ip_prefixes__description__owner__id: ID, ip_prefixes__description__source__id: ID, ip_prefixes__description__value: String, ip_prefixes__description__values: [String], ip_prefixes__hostmask__is_protected: Boolean, ip_prefixes__hostmask__is_visible: Boolean, ip_prefixes__hostmask__owner__id: ID, ip_prefixes__hostmask__source__id: ID, ip_prefixes__hostmask__value: String, ip_prefixes__hostmask__values: [String], ip_prefixes__ids: [ID], ip_prefixes__is_pool__is_protected: Boolean, ip_prefixes__is_pool__is_visible: Boolean, ip_prefixes__is_pool__owner__id: ID, ip_prefixes__is_pool__source__id: ID, ip_prefixes__is_pool__value: Boolean, ip_prefixes__is_pool__values: [Boolean], ip_prefixes__is_top_level__is_protected: Boolean, ip_prefixes__is_top_level__is_visible: Boolean, ip_prefixes__is_top_level__owner__id: ID, ip_prefixes__is_top_level__source__id: ID, ip_prefixes__is_top_level__value: Boolean, ip_prefixes__is_top_level__values: [Boolean], ip_prefixes__isnull: Boolean, ip_prefixes__member_type__is_protected: Boolean, ip_prefixes__member_type__is_visible: Boolean, ip_prefixes__member_type__owner__id: ID, ip_prefixes__member_type__source__id: ID, ip_prefixes__member_type__value: String, ip_prefixes__member_type__values: [String], ip_prefixes__netmask__is_protected: Boolean, ip_prefixes__netmask__is_visible: Boolean, ip_prefixes__netmask__owner__id: ID, ip_prefixes__netmask__source__id: ID, ip_prefixes__netmask__value: String, ip_prefixes__netmask__values: [String], ip_prefixes__network_address__is_protected: Boolean, ip_prefixes__network_address__is_visible: Boolean, ip_prefixes__network_address__owner__id: ID, ip_prefixes__network_address__source__id: ID, ip_prefixes__network_address__value: String, ip_prefixes__network_address__values: [String], ip_prefixes__prefix__is_protected: Boolean, ip_prefixes__prefix__is_visible: Boolean, ip_prefixes__prefix__owner__id: ID, ip_prefixes__prefix__source__id: ID, ip_prefixes__prefix__value: String, ip_prefixes__prefix__values: [String], ip_prefixes__utilization__is_protected: Boolean, ip_prefixes__utilization__is_visible: Boolean, ip_prefixes__utilization__owner__id: ID, ip_prefixes__utilization__source__id: ID, ip_prefixes__utilization__value: BigInt, ip_prefixes__utilization__values: [BigInt], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], name__is_protected: Boolean, name__is_visible: Boolean, name__isnull: Boolean, name__owner__id: ID, name__source__id: ID, name__value: String, name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profiles__ids: [ID], profiles__isnull: Boolean, profiles__profile_name__is_protected: Boolean, profiles__profile_name__is_visible: Boolean, profiles__profile_name__owner__id: ID, profiles__profile_name__source__id: ID, profiles__profile_name__value: String, profiles__profile_name__values: [String], profiles__profile_priority__is_protected: Boolean, profiles__profile_priority__is_visible: Boolean, profiles__profile_priority__owner__id: ID, profiles__profile_priority__source__id: ID, profiles__profile_priority__value: BigInt, profiles__profile_priority__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedIpamNamespace! + LineageOwner(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, partial_match: Boolean): PaginatedLineageOwner! + LineageSource(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], ids: [ID], limit: NonNegativeInt, offset: NonNegativeInt, order: OrderInput, partial_match: Boolean): PaginatedLineageSource! + ProfileBuiltinIPAddress(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__address__is_protected: Boolean, related_nodes__address__is_visible: Boolean, related_nodes__address__owner__id: ID, related_nodes__address__source__id: ID, related_nodes__address__value: String, related_nodes__address__values: [String], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__ids: [ID], related_nodes__isnull: Boolean, subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileBuiltinIPAddress! + ProfileBuiltinIPPrefix(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], is_pool__is_protected: Boolean, is_pool__is_visible: Boolean, is_pool__isnull: Boolean, is_pool__owner__id: ID, is_pool__source__id: ID, is_pool__value: Boolean, is_pool__values: [Boolean], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], member_type__is_protected: Boolean, member_type__is_visible: Boolean, member_type__isnull: Boolean, member_type__owner__id: ID, member_type__source__id: ID, member_type__value: String, member_type__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__broadcast_address__is_protected: Boolean, related_nodes__broadcast_address__is_visible: Boolean, related_nodes__broadcast_address__owner__id: ID, related_nodes__broadcast_address__source__id: ID, related_nodes__broadcast_address__value: String, related_nodes__broadcast_address__values: [String], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__hostmask__is_protected: Boolean, related_nodes__hostmask__is_visible: Boolean, related_nodes__hostmask__owner__id: ID, related_nodes__hostmask__source__id: ID, related_nodes__hostmask__value: String, related_nodes__hostmask__values: [String], related_nodes__ids: [ID], related_nodes__is_pool__is_protected: Boolean, related_nodes__is_pool__is_visible: Boolean, related_nodes__is_pool__owner__id: ID, related_nodes__is_pool__source__id: ID, related_nodes__is_pool__value: Boolean, related_nodes__is_pool__values: [Boolean], related_nodes__is_top_level__is_protected: Boolean, related_nodes__is_top_level__is_visible: Boolean, related_nodes__is_top_level__owner__id: ID, related_nodes__is_top_level__source__id: ID, related_nodes__is_top_level__value: Boolean, related_nodes__is_top_level__values: [Boolean], related_nodes__isnull: Boolean, related_nodes__member_type__is_protected: Boolean, related_nodes__member_type__is_visible: Boolean, related_nodes__member_type__owner__id: ID, related_nodes__member_type__source__id: ID, related_nodes__member_type__value: String, related_nodes__member_type__values: [String], related_nodes__netmask__is_protected: Boolean, related_nodes__netmask__is_visible: Boolean, related_nodes__netmask__owner__id: ID, related_nodes__netmask__source__id: ID, related_nodes__netmask__value: String, related_nodes__netmask__values: [String], related_nodes__network_address__is_protected: Boolean, related_nodes__network_address__is_visible: Boolean, related_nodes__network_address__owner__id: ID, related_nodes__network_address__source__id: ID, related_nodes__network_address__value: String, related_nodes__network_address__values: [String], related_nodes__prefix__is_protected: Boolean, related_nodes__prefix__is_visible: Boolean, related_nodes__prefix__owner__id: ID, related_nodes__prefix__source__id: ID, related_nodes__prefix__value: String, related_nodes__prefix__values: [String], related_nodes__utilization__is_protected: Boolean, related_nodes__utilization__is_visible: Boolean, related_nodes__utilization__owner__id: ID, related_nodes__utilization__source__id: ID, related_nodes__utilization__value: BigInt, related_nodes__utilization__values: [BigInt], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileBuiltinIPPrefix! + ProfileBuiltinTag(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__ids: [ID], related_nodes__isnull: Boolean, related_nodes__name__is_protected: Boolean, related_nodes__name__is_visible: Boolean, related_nodes__name__owner__id: ID, related_nodes__name__source__id: ID, related_nodes__name__value: String, related_nodes__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileBuiltinTag! + ProfileIpamNamespace(any__is_protected: Boolean, any__is_visible: Boolean, any__owner__id: ID, any__source__id: ID, any__value: String, any__values: [String], description__is_protected: Boolean, description__is_visible: Boolean, description__isnull: Boolean, description__owner__id: ID, description__source__id: ID, description__value: String, description__values: [String], hfid: [String], ids: [ID], limit: NonNegativeInt, member_of_groups__description__value: String, member_of_groups__description__values: [String], member_of_groups__group_type__value: String, member_of_groups__group_type__values: [String], member_of_groups__ids: [ID], member_of_groups__isnull: Boolean, member_of_groups__label__value: String, member_of_groups__label__values: [String], member_of_groups__name__value: String, member_of_groups__name__values: [String], offset: NonNegativeInt, order: OrderInput, partial_match: Boolean, profile_name__is_protected: Boolean, profile_name__is_visible: Boolean, profile_name__isnull: Boolean, profile_name__owner__id: ID, profile_name__source__id: ID, profile_name__value: String, profile_name__values: [String], profile_priority__is_protected: Boolean, profile_priority__is_visible: Boolean, profile_priority__isnull: Boolean, profile_priority__owner__id: ID, profile_priority__source__id: ID, profile_priority__value: BigInt, profile_priority__values: [BigInt], related_nodes__default__is_protected: Boolean, related_nodes__default__is_visible: Boolean, related_nodes__default__owner__id: ID, related_nodes__default__source__id: ID, related_nodes__default__value: Boolean, related_nodes__default__values: [Boolean], related_nodes__description__is_protected: Boolean, related_nodes__description__is_visible: Boolean, related_nodes__description__owner__id: ID, related_nodes__description__source__id: ID, related_nodes__description__value: String, related_nodes__description__values: [String], related_nodes__ids: [ID], related_nodes__isnull: Boolean, related_nodes__name__is_protected: Boolean, related_nodes__name__is_visible: Boolean, related_nodes__name__owner__id: ID, related_nodes__name__source__id: ID, related_nodes__name__value: String, related_nodes__name__values: [String], subscriber_of_groups__description__value: String, subscriber_of_groups__description__values: [String], subscriber_of_groups__group_type__value: String, subscriber_of_groups__group_type__values: [String], subscriber_of_groups__ids: [ID], subscriber_of_groups__isnull: Boolean, subscriber_of_groups__label__value: String, subscriber_of_groups__label__values: [String], subscriber_of_groups__name__value: String, subscriber_of_groups__name__values: [String]): PaginatedProfileIpamNamespace! + Relationship(excluded_namespaces: [String], ids: [String!]!, limit: NonNegativeInt, offset: NonNegativeInt): Relationships! } type RecomputeComputedAttribute {