localization

package
v1.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 8, 2026 License: MIT Imports: 19 Imported by: 0

Documentation

Overview

Package localization provides message catalogs, locale selection, and boundary rendering for NornicDB's human-readable production text.

Index

Constants

View Source
const (
	// EnvLanguage overrides the process-default language.
	EnvLanguage = "NORNICDB_LANGUAGE"
	// AutoLanguage requests operating-system language detection.
	AutoLanguage = "auto"
	// SourceLanguage is the complete embedded source catalog and final fallback.
	SourceLanguage = "en-US"
)
View Source
const (
	// EventBoltServerListening identifies a Bolt listener ready to accept connections.
	EventBoltServerListening                    EventID = "bolt.server.listening"
	EventBoltConnectionHandlerPanic             EventID = "bolt.connection.handler_panic"
	EventBoltUnencryptedConnectionRejected      EventID = "bolt.connection.unencrypted_rejected"
	EventBoltTransportSniffFailed               EventID = "bolt.transport.sniff_failed"
	EventBoltHandshakeFailed                    EventID = "bolt.handshake.failed"
	EventBoltMessageHandlingError               EventID = "bolt.message.handling_error"
	EventBoltHelloSchemeNone                    EventID = "bolt.auth.hello_scheme_none"
	EventBoltWebSocketCookieBearerRejected      EventID = "bolt.auth.ws_cookie_bearer_rejected"
	EventBoltAuthenticationFailed               EventID = "bolt.auth.failed"
	EventBoltHello                              EventID = "bolt.session.hello"
	EventBoltQuery                              EventID = "bolt.query.executing"
	EventBoltQueryError                         EventID = "bolt.query.error"
	EventBoltRun                                EventID = "bolt.query.run"
	EventBoltDiscoveryRefreshFailed             EventID = "bolt.discovery.refresh_failed"
	EventBoltWebSocketUpgradeReadRequestFailed  EventID = "bolt.websocket.upgrade_read_request_failed"
	EventBoltWebSocketUpgradeCredentials        EventID = "bolt.websocket.upgrade_credentials"
	EventBoltWebSocketUpgradeFailed             EventID = "bolt.websocket.upgrade_failed"
	EventBoltTransactionTerminated              EventID = "bolt.transaction.explicit_terminated"
	EventBoltTransactionTimeoutCleanupRequested EventID = "bolt.transaction.timeout_cleanup_requested"
	EventBoltTransactionCommitFailed            EventID = "bolt.transaction.commit_failed"
	EventBoltTransactionCleanupFailed           EventID = "bolt.transaction.cleanup_failed"
	EventBoltTransactionTimeoutCleanupCompleted EventID = "bolt.transaction.timeout_cleanup_completed"

	MessageBoltLogServerListening                    MessageID = "bolt.log.server_listening"
	MessageBoltLogConnectionHandlerPanic             MessageID = "bolt.log.connection_handler_panic"
	MessageBoltLogUnencryptedConnectionRejected      MessageID = "bolt.log.unencrypted_connection_rejected"
	MessageBoltLogTransportSniffFailed               MessageID = "bolt.log.transport_sniff_failed"
	MessageBoltLogHandshakeFailed                    MessageID = "bolt.log.handshake_failed"
	MessageBoltLogMessageHandlingError               MessageID = "bolt.log.message_handling_error"
	MessageBoltLogHelloSchemeNone                    MessageID = "bolt.log.hello_scheme_none"
	MessageBoltLogWebSocketCookieBearerRejected      MessageID = "bolt.log.ws_cookie_bearer_rejected"
	MessageBoltLogAuthenticationFailed               MessageID = "bolt.log.authentication_failed"
	MessageBoltLogHello                              MessageID = "bolt.log.hello"
	MessageBoltLogQuery                              MessageID = "bolt.log.query"
	MessageBoltLogQueryError                         MessageID = "bolt.log.query_error"
	MessageBoltLogRun                                MessageID = "bolt.log.run"
	MessageBoltLogDiscoveryRefreshFailed             MessageID = "bolt.log.discovery_refresh_failed"
	MessageBoltLogWebSocketUpgradeReadRequestFailed  MessageID = "bolt.log.websocket_upgrade_read_request_failed"
	MessageBoltLogWebSocketUpgradeCredentials        MessageID = "bolt.log.websocket_upgrade_credentials"
	MessageBoltLogWebSocketUpgradeFailed             MessageID = "bolt.log.websocket_upgrade_failed"
	MessageBoltLogTransactionTerminated              MessageID = "bolt.log.transaction_terminated"
	MessageBoltLogTransactionTimeoutCleanupRequested MessageID = "bolt.log.transaction_timeout_cleanup_requested"
	MessageBoltLogTransactionCommitFailed            MessageID = "bolt.log.transaction_commit_failed"
	MessageBoltLogTransactionCleanupFailed           MessageID = "bolt.log.transaction_cleanup_failed"
	MessageBoltLogTransactionTimeoutCleanupCompleted MessageID = "bolt.log.transaction_timeout_cleanup_completed"
)
View Source
const (
	// EventCypherSlowQuery identifies a query exceeding the configured slow-query threshold.
	EventCypherSlowQuery EventID = "cypher.slow_query"
	// EventCypherCreateDatabaseInvoked identifies entry into CREATE DATABASE execution.
	EventCypherCreateDatabaseInvoked EventID = "cypher.create_database.invoked"
	// EventCypherCreateDatabaseFailed identifies a failed CREATE DATABASE operation.
	EventCypherCreateDatabaseFailed EventID = "cypher.create_database.failed"
	// EventCypherCreateDatabaseSucceeded identifies a successful CREATE DATABASE operation.
	EventCypherCreateDatabaseSucceeded EventID = "cypher.create_database.succeeded"
	// EventCypherVectorSearchDisabled identifies a vector query against a disabled database.
	EventCypherVectorSearchDisabled EventID = "cypher.vector_search.disabled"
	// EventCypherOrphanedEmbeddingDetected identifies an embedding whose node no longer exists.
	EventCypherOrphanedEmbeddingDetected EventID = "cypher.vector_search.orphaned_embedding_detected"
	// EventCypherOrphanedEmbeddingRemovalFailed identifies failure to remove an orphaned embedding.
	EventCypherOrphanedEmbeddingRemovalFailed EventID = "cypher.vector_search.orphaned_embedding_removal_failed"
	// EventCypherDecaySubsystemDisabled identifies decay evaluation while decay is disabled.
	EventCypherDecaySubsystemDisabled EventID = "cypher.knowledgepolicy.decay_subsystem_disabled"

	MessageCypherLogSlowQuery                      MessageID = "cypher.log.slow_query"
	MessageCypherLogCreateDatabaseInvoked          MessageID = "cypher.log.create_database_invoked"
	MessageCypherLogCreateDatabaseFailed           MessageID = "cypher.log.create_database_failed"
	MessageCypherLogCreateDatabaseSucceeded        MessageID = "cypher.log.create_database_succeeded"
	MessageCypherLogVectorSearchDisabled           MessageID = "cypher.log.vector_search_disabled"
	MessageCypherLogOrphanedEmbeddingDetected      MessageID = "cypher.log.orphaned_embedding_detected"
	MessageCypherLogOrphanedEmbeddingRemovalFailed MessageID = "cypher.log.orphaned_embedding_removal_failed"
	MessageCypherLogDecaySubsystemDisabled         MessageID = "cypher.log.decay_subsystem_disabled"
)
View Source
const (
	EventHeimdallToolCall                       EventID   = "heimdall.tool.call"
	EventHeimdallOperator                       EventID   = "heimdall.operator"
	EventInferenceEdgeDecayStarted              EventID   = "inference.edge_decay.started"
	EventInferenceHeimdallBatchError            EventID   = "inference.heimdall.batch_error"
	EventInferenceOperator                      EventID   = "inference.operator"
	EventObservabilityTenantLabelsResolved      EventID   = "observability.tenant_labels.resolved"
	EventObservabilityInstanceIDResolved        EventID   = "observability.instance_id.resolved"
	EventObservabilityOperator                  EventID   = "observability.operator"
	EventReplicationRaftBecameLeader            EventID   = "replication.raft.became_leader"
	EventReplicationOperator                    EventID   = "replication.operator"
	MessageHeimdallLogToolCall                  MessageID = "runtime.log.heimdall_tool_call"
	MessageHeimdallLogOperator                  MessageID = "runtime.log.heimdall_operator"
	MessageInferenceLogEdgeDecayStarted         MessageID = "runtime.log.inference_edge_decay_started"
	MessageInferenceLogHeimdallBatchError       MessageID = "runtime.log.inference_heimdall_batch_error"
	MessageInferenceLogOperator                 MessageID = "runtime.log.inference_operator"
	MessageObservabilityLogTenantLabelsResolved MessageID = "runtime.log.observability_tenant_labels_resolved"
	MessageObservabilityLogInstanceIDResolved   MessageID = "runtime.log.observability_instance_id_resolved"
	MessageObservabilityLogOperator             MessageID = "runtime.log.observability_operator"
	MessageReplicationLogRaftBecameLeader       MessageID = "runtime.log.replication_raft_became_leader"
	MessageReplicationLogOperator               MessageID = "runtime.log.replication_operator"
)
View Source
const (
	// EventSearchBM25EngineSelected identifies selection of the active BM25 implementation.
	EventSearchBM25EngineSelected EventID = "search.bm25_engine.selected"

	MessageSearchLogBM25EngineSelected MessageID = "search-log.log.bm25_engine_selected"
	MessageSearchLogOperator           MessageID = "search-log.log.operator"
)
View Source
const (
	EventServerHeimdallInitializing                    EventID = "server.heimdall.initializing"
	EventServerHeimdallProviderResolved                EventID = "server.heimdall.provider_resolved"
	EventServerHeimdallInitializationFailed            EventID = "server.heimdall.initialization_failed"
	EventServerAPOCPluginsLoading                      EventID = "server.plugins.apoc.loading"
	EventServerAPOCPluginsLoadFailed                   EventID = "server.plugins.apoc.load_failed"
	EventServerHeimdallPluginsLoading                  EventID = "server.plugins.heimdall.loading"
	EventServerHeimdallPluginsLoadFailed               EventID = "server.plugins.heimdall.load_failed"
	EventServerHeimdallPluginsDirectoryEmpty           EventID = "server.plugins.heimdall.directory_empty"
	EventServerHeimdallPluginsDirectoryDuplicate       EventID = "server.plugins.heimdall.directory_duplicate"
	EventServerHeimdallReady                           EventID = "server.heimdall.ready"
	EventServerHeimdallPluginsMissing                  EventID = "server.plugins.heimdall.missing"
	EventServerHeimdallActionRegistered                EventID = "server.heimdall.action_registered"
	EventServerSearchRerankerModelUnavailable          EventID = "server.search_rerank.model_unavailable"
	EventServerSearchRerankerHealthCheckFailed         EventID = "server.search_rerank.health_check_failed"
	EventServerEmbeddingModelLoading                   EventID = "server.embedding.model_loading"
	EventServerEmbeddingRetryLoopStopped               EventID = "server.embedding.retry_loop_stopped"
	EventServerEmbeddingCacheEnabled                   EventID = "server.embedding.cache_enabled"
	EventServerEmbeddingsReady                         EventID = "server.embedding.ready"
	EventServerEmbeddingInitializationAttemptFailed    EventID = "server.embedding.initialization_attempt_failed"
	EventServerEmbeddingInitializationRetrying         EventID = "server.embedding.initialization_retrying"
	EventServerEmbeddingInitializationRetryInterrupted EventID = "server.embedding.initialization_retry_interrupted"
	EventServerEmbeddingRetryIntervalCapped            EventID = "server.embedding.retry_interval_capped"
	EventServerRBACRolesLoadFailed                     EventID = "server.rbac.roles_load_failed"
	EventServerRBACAllowlistLoadFailed                 EventID = "server.rbac.allowlist_load_failed"
	EventServerRBACAllowlistSeedFailed                 EventID = "server.rbac.allowlist_seed_failed"
	EventServerRBACPrivilegesLoadFailed                EventID = "server.rbac.privileges_load_failed"
	EventServerRBACRoleEntitlementsLoadFailed          EventID = "server.rbac.role_entitlements_load_failed"
	EventServerDatabaseConfigStoreLoadFailed           EventID = "server.dbconfig.store_load_failed"
	EventServerHTTPServeFailed                         EventID = "server.http.serve_failed"

	MessageServerLogHeimdallInitializing                    MessageID = "server.log.heimdall_initializing"
	MessageServerLogHeimdallProviderResolved                MessageID = "server.log.heimdall_provider_resolved"
	MessageServerLogHeimdallInitializationFailed            MessageID = "server.log.heimdall_initialization_failed"
	MessageServerLogAPOCPluginsLoading                      MessageID = "server.log.apoc_plugins_loading"
	MessageServerLogAPOCPluginsLoadFailed                   MessageID = "server.log.apoc_plugins_load_failed"
	MessageServerLogHeimdallPluginsLoading                  MessageID = "server.log.heimdall_plugins_loading"
	MessageServerLogHeimdallPluginsLoadFailed               MessageID = "server.log.heimdall_plugins_load_failed"
	MessageServerLogHeimdallPluginsDirectoryEmpty           MessageID = "server.log.heimdall_plugins_directory_empty"
	MessageServerLogHeimdallPluginsDirectoryDuplicate       MessageID = "server.log.heimdall_plugins_directory_duplicate"
	MessageServerLogHeimdallReady                           MessageID = "server.log.heimdall_ready"
	MessageServerLogHeimdallPluginsMissing                  MessageID = "server.log.heimdall_plugins_missing"
	MessageServerLogHeimdallActionRegistered                MessageID = "server.log.heimdall_action_registered"
	MessageServerLogSearchRerankerModelUnavailable          MessageID = "server.log.search_reranker_model_unavailable"
	MessageServerLogSearchRerankerHealthCheckFailed         MessageID = "server.log.search_reranker_health_check_failed"
	MessageServerLogEmbeddingModelLoading                   MessageID = "server.log.embedding_model_loading"
	MessageServerLogEmbeddingRetryLoopStopped               MessageID = "server.log.embedding_retry_loop_stopped"
	MessageServerLogEmbeddingCacheEnabled                   MessageID = "server.log.embedding_cache_enabled"
	MessageServerLogEmbeddingsReady                         MessageID = "server.log.embeddings_ready"
	MessageServerLogEmbeddingInitializationAttemptFailed    MessageID = "server.log.embedding_initialization_attempt_failed"
	MessageServerLogEmbeddingInitializationRetrying         MessageID = "server.log.embedding_initialization_retrying"
	MessageServerLogEmbeddingInitializationRetryInterrupted MessageID = "server.log.embedding_initialization_retry_interrupted"
	MessageServerLogEmbeddingRetryIntervalCapped            MessageID = "server.log.embedding_retry_interval_capped"
	MessageServerLogRBACRolesLoadFailed                     MessageID = "server.log.rbac_roles_load_failed"
	MessageServerLogRBACAllowlistLoadFailed                 MessageID = "server.log.rbac_allowlist_load_failed"
	MessageServerLogRBACAllowlistSeedFailed                 MessageID = "server.log.rbac_allowlist_seed_failed"
	MessageServerLogRBACPrivilegesLoadFailed                MessageID = "server.log.rbac_privileges_load_failed"
	MessageServerLogRBACRoleEntitlementsLoadFailed          MessageID = "server.log.rbac_role_entitlements_load_failed"
	MessageServerLogDatabaseConfigStoreLoadFailed           MessageID = "server.log.database_config_store_load_failed"
	MessageServerLogHTTPServeFailed                         MessageID = "server.log.http_serve_failed"
)

Additional server event and message identifiers cover asynchronous startup, plugin loading, embedding retries, RBAC loading, and HTTP serving failures.

View Source
const (
	// EventServerSearchReconcileStorageUnavailable identifies a storage lookup failure during startup search reconciliation.
	EventServerSearchReconcileStorageUnavailable EventID = "server.search_reconcile.storage_unavailable"
	// EventServerSearchReconcileFailed identifies a search index startup failure during reconciliation.
	EventServerSearchReconcileFailed EventID = "server.search_reconcile.failed"
	// EventServerMCPDisabled identifies startup with MCP disabled by configuration.
	EventServerMCPDisabled EventID = "server.mcp.disabled"
	// EventServerRemoteCredentialKeyFallback identifies credential key reuse.
	EventServerRemoteCredentialKeyFallback EventID = "server.remote_credentials.key_fallback"
	// EventServerUIHeadless identifies UI disablement in headless mode.
	EventServerUIHeadless EventID = "server.ui.headless"
	// EventServerAuthenticationDisabled identifies startup without authentication.
	EventServerAuthenticationDisabled EventID = "server.auth.disabled"
	// EventServerUIInitializationFailed identifies unavailable browser UI assets.
	EventServerUIInitializationFailed EventID = "server.ui.initialization_failed"
	// EventServerUIEnabled identifies successful browser UI registration.
	EventServerUIEnabled EventID = "server.ui.enabled"
	// EventServerRateLimitEnabled identifies enabled request rate limiting.
	EventServerRateLimitEnabled EventID = "server.rate_limit.enabled"
	// EventServerGraphQLEnabled identifies successful GraphQL route registration.
	EventServerGraphQLEnabled EventID = "server.graphql.enabled"
	// EventServerHeimdallDisabled identifies startup with Heimdall disabled.
	EventServerHeimdallDisabled EventID = "server.heimdall.disabled"
	// EventServerSearchRerankDisabled identifies startup without search reranking.
	EventServerSearchRerankDisabled EventID = "server.search_rerank.disabled"
	// EventServerSearchRerankAPIURLMissing identifies an incomplete external reranker configuration.
	EventServerSearchRerankAPIURLMissing EventID = "server.search_rerank.api_url_missing"
	// EventServerSearchRerankerReady identifies a configured stage-2 reranker.
	EventServerSearchRerankerReady EventID = "server.search_rerank.ready"
	// EventServerSearchRerankerLoading identifies asynchronous local reranker loading.
	EventServerSearchRerankerLoading EventID = "server.search_rerank.loading"
	// EventServerSlowQueryLoggingEnabled identifies enabled in-process slow-query logging.
	EventServerSlowQueryLoggingEnabled EventID = "server.slow_query.enabled"
	// EventServerSlowQueryLoggingConfigured identifies file-backed slow-query logging.
	EventServerSlowQueryLoggingConfigured EventID = "server.slow_query.configured"
	// EventServerSlowQueryLogOpenFailed identifies an unavailable slow-query log file.
	EventServerSlowQueryLogOpenFailed EventID = "server.slow_query.open_failed"
	// EventServerHTTP2Enabled identifies the configured HTTP/2 transport mode.
	EventServerHTTP2Enabled                           EventID   = "server.http2.enabled"
	MessageServerLogSearchReconcileStorageUnavailable MessageID = "server.log.search_reconcile_storage_unavailable"
	MessageServerLogSearchReconcileFailed             MessageID = "server.log.search_reconcile_failed"
	MessageServerLogMCPDisabled                       MessageID = "server.log.mcp_disabled"
	MessageServerLogRemoteCredentialKeyFallback       MessageID = "server.log.remote_credentials_key_fallback"
	MessageServerLogUIHeadless                        MessageID = "server.log.ui_headless"
	MessageServerLogAuthenticationDisabled            MessageID = "server.log.authentication_disabled"
	MessageServerLogUIInitializationFailed            MessageID = "server.log.ui_initialization_failed"
	MessageServerLogUIEnabled                         MessageID = "server.log.ui_enabled"
	MessageServerLogRateLimitEnabled                  MessageID = "server.log.rate_limit_enabled"
	MessageServerLogGraphQLEnabled                    MessageID = "server.log.graphql_enabled"
	MessageServerLogHeimdallDisabled                  MessageID = "server.log.heimdall_disabled"
	MessageServerLogSearchRerankDisabled              MessageID = "server.log.search_rerank_disabled"
	MessageServerLogSearchRerankAPIURLMissing         MessageID = "server.log.search_rerank_api_url_missing"
	MessageServerLogSearchRerankerReady               MessageID = "server.log.search_reranker_ready"
	MessageServerLogSearchRerankerLoading             MessageID = "server.log.search_reranker_loading"
	MessageServerLogSlowQueryLoggingEnabled           MessageID = "server.log.slow_query_logging_enabled"
	MessageServerLogSlowQueryLoggingConfigured        MessageID = "server.log.slow_query_logging_configured"
	MessageServerLogSlowQueryLogOpenFailed            MessageID = "server.log.slow_query_log_open_failed"
	MessageServerLogHTTP2Enabled                      MessageID = "server.log.http2_enabled"
)
View Source
const (
	EventStorageWALIncompleteWrite            EventID   = "storage.wal.incomplete_write"
	EventStorageWALCorruptedEmbeddingsSkipped EventID   = "storage.wal.corrupted_embeddings_skipped"
	MessageStorageLogWALIncompleteWrite       MessageID = "storage-log.log.wal_incomplete_write"
	MessageStorageLogWALEmbeddingsSkipped     MessageID = "storage-log.log.wal_embeddings_skipped"
)

Variables

View Source
var CatalogManifest = [...]CatalogManifestEntry{}/* 1809 elements not displayed */

CatalogManifest is the generated source-catalog API manifest.

Functions

func LogProcessFallback

func LogProcessFallback(logger *slog.Logger, resolved ProcessPreferences, match Match)

LogProcessFallback emits bounded bootstrap diagnostics after logger initialization.

func NormalizeLanguage

func NormalizeLanguage(value string) (language.Tag, error)

NormalizeLanguage converts BCP 47 and common POSIX locale forms to a tag. It returns language.Und for C/POSIX language-neutral locales.

func PreferencesFromContext

func PreferencesFromContext(ctx context.Context) []language.Tag

PreferencesFromContext returns ordered language preferences from ctx.

func WithPreferences

func WithPreferences(ctx context.Context, preferences ...language.Tag) context.Context

WithPreferences returns a context carrying ordered language preferences.

Types

type CatalogManifestEntry

type CatalogManifestEntry struct {
	ID          MessageID
	Constructor string
	Fields      []string
	PluralForms []string
}

CatalogManifestEntry describes one source-catalog message and its typed constructor.

type EventID

type EventID string

EventID is a stable, language-independent log event identifier.

const (
	EventServerHTTPRequest                         EventID = "server.http.request"
	EventServerSlowQuery                           EventID = "server.slow_query"
	EventServerAuthTrace                           EventID = "server.auth.trace"
	EventServerHTTPPanicRecovered                  EventID = "server.http.panic_recovered"
	EventServerHTTPPanicStackTrace                 EventID = "server.http.panic_stack_trace"
	EventServerOAuthRedirectStateStored            EventID = "server.oauth.redirect_state_stored"
	EventServerOAuthCallbackFailed                 EventID = "server.oauth.callback_failed"
	EventServerOAuthUserAuthenticated              EventID = "server.oauth.user_authenticated"
	EventServerRBACRoleEntitlementsSetFailed       EventID = "server.rbac.role_entitlements_set_failed"
	EventServerRBACAllowlistSaveFailed             EventID = "server.rbac.allowlist_save_failed"
	EventServerRBACPrivilegesPutMatrixFailed       EventID = "server.rbac.privileges_put_matrix_failed"
	EventServerEmbedRegenerationAborted            EventID = "server.embed.regeneration_aborted"
	EventServerEmbedRegenerationStarting           EventID = "server.embed.regeneration_starting"
	EventServerEmbedWorkerResetFailed              EventID = "server.embed.worker_reset_failed"
	EventServerEmbedRegenerationSkippedDBClosing   EventID = "server.embed.regeneration_skipped_db_closing"
	EventServerEmbedClearFailed                    EventID = "server.embed.clear_failed"
	EventServerEmbedCleared                        EventID = "server.embed.cleared"
	EventServerEmbedWorkerTriggerFailed            EventID = "server.embed.worker_trigger_failed"
	EventServerEmbedWorkerTriggered                EventID = "server.embed.worker_triggered"
	EventServerSearchRequest                       EventID = "server.search.request"
	EventServerSearchStorageLookupFailed           EventID = "server.search.storage_lookup_failed"
	EventServerSearchQueryEmbeddingFailed          EventID = "server.search.query_embedding_failed"
	EventServerSearchChunkedQueryEmbeddingFailed   EventID = "server.search.chunked_query_embedding_failed"
	EventServerSearchTiming                        EventID = "server.search.timing"
	EventServerDBConfigReloadFailed                EventID = "server.dbconfig.reload_failed"
	EventServerDBConfigRebuildStorageResolveFailed EventID = "server.dbconfig.rebuild_storage_resolve_failed"
	EventServerDBConfigRebuildStartFailed          EventID = "server.dbconfig.rebuild_start_failed"
	EventServerCreateDatabaseDefensiveFix          EventID = "server.create_database.defensive_fix"
	EventServerRetentionDefaultPolicyAddFailed     EventID = "server.retention.default_policy_add_failed"
	EventServerGraphQLRequest                      EventID = "server.graphql.request"
	EventServerQdrantGRPCEnabled                   EventID = "server.qdrant_grpc.enabled"
)

type LocalizedError

type LocalizedError struct {
	Code    string
	Message Message
	Cause   error
}

LocalizedError carries stable error identity and a localizable message separately.

func NewLocalizedError

func NewLocalizedError(code string, message Message, cause error) *LocalizedError

NewLocalizedError constructs an error that preserves message identity and wrapping.

func (*LocalizedError) Error

func (e *LocalizedError) Error() string

Error returns the source English fallback for backward compatibility.

func (*LocalizedError) Render

func (e *LocalizedError) Render(ctx context.Context, manager *Manager) (string, language.Tag, error)

Render localizes the human-readable message at a boundary.

func (*LocalizedError) Unwrap

func (e *LocalizedError) Unwrap() error

Unwrap preserves errors.Is and errors.As behavior for the underlying cause.

type LogEvent

type LogEvent struct {
	ID      EventID
	Message Message
	Attrs   []slog.Attr
}

LogEvent describes localized log prose and its language-independent fields.

func BoltBasicAuthenticationFailedEvent

func BoltBasicAuthenticationFailedEvent(principal, remote string, err error) LogEvent

BoltBasicAuthenticationFailedEvent describes failed Bolt basic authentication.

func BoltBearerAuthenticationFailedEvent

func BoltBearerAuthenticationFailedEvent(remote string, err error) LogEvent

BoltBearerAuthenticationFailedEvent describes failed Bolt bearer authentication.

func BoltConnectionHandlerPanicEvent

func BoltConnectionHandlerPanicEvent(recovered any) LogEvent

BoltConnectionHandlerPanicEvent describes recovery from a connection handler panic.

func BoltDiscoveryRefreshFailedEvent

func BoltDiscoveryRefreshFailedEvent(err error) LogEvent

BoltDiscoveryRefreshFailedEvent describes a discovery response refresh failure.

func BoltHandshakeFailedEvent

func BoltHandshakeFailedEvent(remote string, err error) LogEvent

BoltHandshakeFailedEvent describes a Bolt protocol handshake failure.

func BoltHelloEvent

func BoltHelloEvent(remote, user string, roles []string, database string) LogEvent

BoltHelloEvent describes an authenticated Bolt session HELLO.

func BoltHelloSchemeNoneEvent

func BoltHelloSchemeNoneEvent(implicitBearerPresent, allowAnonymous bool) LogEvent

BoltHelloSchemeNoneEvent describes an authentication diagnostic for a scheme-none HELLO.

func BoltMessageHandlingErrorEvent

func BoltMessageHandlingErrorEvent(remote string, err error) LogEvent

BoltMessageHandlingErrorEvent describes a session message handling failure.

func BoltQueryErrorEvent

func BoltQueryErrorEvent() LogEvent

BoltQueryErrorEvent describes a query execution error when query logging is enabled.

func BoltQueryEvent

func BoltQueryEvent(user, remote, query string, params map[string]any) LogEvent

BoltQueryEvent describes a query selected for operator diagnostic logging.

func BoltRunErrorEvent

func BoltRunErrorEvent(database, status string, rows int, duration time.Duration, err string) LogEvent

BoltRunErrorEvent describes failed Bolt RUN timing and result metadata.

func BoltRunEvent

func BoltRunEvent(database, status string, rows int, duration time.Duration) LogEvent

BoltRunEvent describes successful Bolt RUN timing and result metadata.

func BoltServerListeningEvent

func BoltServerListeningEvent(host string, port int) LogEvent

BoltServerListeningEvent describes a Bolt listener ready to accept connections.

func BoltTransactionCleanupFailedEvent

func BoltTransactionCleanupFailedEvent(reason, database string, duration time.Duration, err error) LogEvent

BoltTransactionCleanupFailedEvent describes failed explicit transaction cleanup.

func BoltTransactionCommitFailedEvent

func BoltTransactionCommitFailedEvent(reason, database string, duration time.Duration, err error) LogEvent

BoltTransactionCommitFailedEvent describes a failed explicit transaction commit.

func BoltTransactionTerminatedEvent

func BoltTransactionTerminatedEvent(reason, database string, duration time.Duration) LogEvent

BoltTransactionTerminatedEvent describes normal explicit transaction termination.

func BoltTransactionTimeoutCleanupCompletedEvent

func BoltTransactionTimeoutCleanupCompletedEvent(reason, database string, duration time.Duration) LogEvent

BoltTransactionTimeoutCleanupCompletedEvent describes completed cleanup after transaction timeout.

func BoltTransactionTimeoutCleanupRequestedEvent

func BoltTransactionTimeoutCleanupRequestedEvent(reason, database string, duration time.Duration) LogEvent

BoltTransactionTimeoutCleanupRequestedEvent describes requested cleanup after transaction timeout.

func BoltTransportSniffFailedEvent

func BoltTransportSniffFailedEvent(remote string, err error) LogEvent

BoltTransportSniffFailedEvent describes a transport detection failure.

func BoltUnencryptedConnectionRejectedEvent

func BoltUnencryptedConnectionRejectedEvent(remote string) LogEvent

BoltUnencryptedConnectionRejectedEvent describes a connection rejected because TLS is required.

func BoltWebSocketCookieBearerRejectedEvent

func BoltWebSocketCookieBearerRejectedEvent(remote string, err error) LogEvent

BoltWebSocketCookieBearerRejectedEvent describes a rejected WebSocket cookie bearer token.

func BoltWebSocketUpgradeCredentialsEvent

func BoltWebSocketUpgradeCredentialsEvent(remote string, hasCookie, hasAuthorizationHeader, implicitBearerPresent bool) LogEvent

BoltWebSocketUpgradeCredentialsEvent describes credential presence on a WebSocket upgrade.

func BoltWebSocketUpgradeFailedEvent

func BoltWebSocketUpgradeFailedEvent(remote string, err error) LogEvent

BoltWebSocketUpgradeFailedEvent describes a failed WebSocket protocol upgrade.

func BoltWebSocketUpgradeReadRequestFailedEvent

func BoltWebSocketUpgradeReadRequestFailedEvent(remote string, err error) LogEvent

BoltWebSocketUpgradeReadRequestFailedEvent describes a failed WebSocket upgrade request read.

func CypherCreateDatabaseFailedEvent

func CypherCreateDatabaseFailedEvent() LogEvent

CypherCreateDatabaseFailedEvent describes a failed CREATE DATABASE operation.

func CypherCreateDatabaseInvokedEvent

func CypherCreateDatabaseInvokedEvent(queryLength int) LogEvent

CypherCreateDatabaseInvokedEvent describes entry into CREATE DATABASE execution.

func CypherCreateDatabaseSucceededEvent

func CypherCreateDatabaseSucceededEvent() LogEvent

CypherCreateDatabaseSucceededEvent describes a successful CREATE DATABASE operation.

func CypherDecaySubsystemDisabledEvent

func CypherDecaySubsystemDisabledEvent() LogEvent

CypherDecaySubsystemDisabledEvent describes decay evaluation while decay is disabled.

func CypherOrphanedEmbeddingDetectedEvent

func CypherOrphanedEmbeddingDetectedEvent(nodeID string) LogEvent

CypherOrphanedEmbeddingDetectedEvent describes an embedding whose node no longer exists.

func CypherOrphanedEmbeddingRemovalFailedEvent

func CypherOrphanedEmbeddingRemovalFailedEvent(nodeID string, err error) LogEvent

CypherOrphanedEmbeddingRemovalFailedEvent describes failure to remove an orphaned embedding.

func CypherSlowQueryEvent

func CypherSlowQueryEvent(planHash string, durationMilliseconds int64, query string) LogEvent

CypherSlowQueryEvent describes a query exceeding the configured threshold.

func CypherVectorSearchDisabledEvent

func CypherVectorSearchDisabledEvent(indexName string) LogEvent

CypherVectorSearchDisabledEvent describes a vector query against a disabled database.

func HeimdallOperatorEvent

func HeimdallOperatorEvent(format string, args ...any) LogEvent

HeimdallOperatorEvent converts legacy Heimdall prose into a structured event.

func HeimdallToolCallEvent

func HeimdallToolCallEvent(requestID, action string, params any) LogEvent

HeimdallToolCallEvent describes an agent tool invocation.

func InferenceEdgeDecayStartedEvent

func InferenceEdgeDecayStartedEvent(decayRate, minConfidence float64, scanInterval, gracePeriod time.Duration) LogEvent

InferenceEdgeDecayStartedEvent describes edge-decay worker startup.

func InferenceHeimdallBatchErrorEvent

func InferenceHeimdallBatchErrorEvent(err error) LogEvent

InferenceHeimdallBatchErrorEvent describes a fail-open quality-control batch error.

func InferenceOperatorEvent

func InferenceOperatorEvent(format string, args ...any) LogEvent

InferenceOperatorEvent converts legacy inference prose into a structured event.

func ObservabilityInstanceIDResolvedEvent

func ObservabilityInstanceIDResolvedEvent(instanceID, source string) LogEvent

ObservabilityInstanceIDResolvedEvent describes service instance identity resolution.

func ObservabilityOperatorEvent

func ObservabilityOperatorEvent(format string, args ...any) LogEvent

ObservabilityOperatorEvent converts legacy observability prose into a structured event.

func ObservabilityTenantLabelsResolvedEvent

func ObservabilityTenantLabelsResolvedEvent(enabled bool, reason string, serviceHostPresent, tokenFilePresent bool) LogEvent

ObservabilityTenantLabelsResolvedEvent describes tenant-label policy resolution.

func ReplicationOperatorEvent

func ReplicationOperatorEvent(format string, args ...any) LogEvent

ReplicationOperatorEvent converts legacy replication prose into a structured event.

func ReplicationRaftBecameLeaderEvent

func ReplicationRaftBecameLeaderEvent(nodeID string, term uint64) LogEvent

ReplicationRaftBecameLeaderEvent describes a Raft leader transition.

func SearchBM25EngineSelectedEvent

func SearchBM25EngineSelectedEvent(engine string) LogEvent

SearchBM25EngineSelectedEvent describes selection of the active BM25 implementation.

func SearchOperatorEvent

func SearchOperatorEvent(format string, args ...any) LogEvent

SearchOperatorEvent converts a production search format string into a stable, structured event while retaining its exact historical English rendering.

func ServerAPOCPluginsLoadFailedEvent

func ServerAPOCPluginsLoadFailedEvent(dir string, err error) LogEvent

ServerAPOCPluginsLoadFailedEvent describes an APOC plugin load failure.

func ServerAPOCPluginsLoadingEvent

func ServerAPOCPluginsLoadingEvent(dir string) LogEvent

ServerAPOCPluginsLoadingEvent describes an APOC plugin load attempt.

func ServerAuthTraceEvent

func ServerAuthTraceEvent(method, path, step string, duration time.Duration, err error) LogEvent

ServerAuthTraceEvent describes an enabled authentication timing trace.

func ServerAuthenticationDisabledEvent

func ServerAuthenticationDisabledEvent() LogEvent

ServerAuthenticationDisabledEvent describes startup without authentication.

func ServerCreateDatabaseDefensiveFixEvent

func ServerCreateDatabaseDefensiveFixEvent(database string) LogEvent

ServerCreateDatabaseDefensiveFixEvent describes repaired empty CREATE DATABASE output.

func ServerDBConfigRebuildStartFailedEvent

func ServerDBConfigRebuildStartFailedEvent(database string, err error) LogEvent

ServerDBConfigRebuildStartFailedEvent describes a search rebuild start failure.

func ServerDBConfigRebuildStorageResolveFailedEvent

func ServerDBConfigRebuildStorageResolveFailedEvent(database string, err error) LogEvent

ServerDBConfigRebuildStorageResolveFailedEvent describes a rebuild storage lookup failure.

func ServerDBConfigReloadFailedEvent

func ServerDBConfigReloadFailedEvent(err error) LogEvent

ServerDBConfigReloadFailedEvent describes a post-update config reload failure.

func ServerDatabaseConfigStoreLoadFailedEvent

func ServerDatabaseConfigStoreLoadFailedEvent() LogEvent

ServerDatabaseConfigStoreLoadFailedEvent describes a per-database config store load failure.

func ServerEmbedClearFailedEvent

func ServerEmbedClearFailedEvent(err error) LogEvent

ServerEmbedClearFailedEvent describes a failure clearing embeddings.

func ServerEmbedClearedEvent

func ServerEmbedClearedEvent(cleared int) LogEvent

ServerEmbedClearedEvent describes cleared embeddings before regeneration.

func ServerEmbedRegenerationAbortedEvent

func ServerEmbedRegenerationAbortedEvent(value any) LogEvent

ServerEmbedRegenerationAbortedEvent describes shutdown interrupting regeneration.

func ServerEmbedRegenerationSkippedDBClosingEvent

func ServerEmbedRegenerationSkippedDBClosingEvent() LogEvent

ServerEmbedRegenerationSkippedDBClosingEvent describes regeneration skipped during shutdown.

func ServerEmbedRegenerationStartingEvent

func ServerEmbedRegenerationStartingEvent() LogEvent

ServerEmbedRegenerationStartingEvent describes the start of embedding regeneration.

func ServerEmbedWorkerResetFailedEvent

func ServerEmbedWorkerResetFailedEvent(err error) LogEvent

ServerEmbedWorkerResetFailedEvent describes a failed embedding worker reset.

func ServerEmbedWorkerTriggerFailedEvent

func ServerEmbedWorkerTriggerFailedEvent(err error) LogEvent

ServerEmbedWorkerTriggerFailedEvent describes a failed embedding worker trigger.

func ServerEmbedWorkerTriggeredEvent

func ServerEmbedWorkerTriggeredEvent() LogEvent

ServerEmbedWorkerTriggeredEvent describes a successful embedding worker trigger.

func ServerEmbeddingCacheEnabledEvent

func ServerEmbeddingCacheEnabledEvent(entries, memoryMB int) LogEvent

ServerEmbeddingCacheEnabledEvent describes enabled embedding caching.

func ServerEmbeddingInitializationAttemptFailedLocalEvent

func ServerEmbeddingInitializationAttemptFailedLocalEvent(attempt int, model string, err error) LogEvent

ServerEmbeddingInitializationAttemptFailedLocalEvent describes a failed local initialization attempt.

func ServerEmbeddingInitializationAttemptFailedRemoteEvent

func ServerEmbeddingInitializationAttemptFailedRemoteEvent(attempt int, provider, model, url string, err error) LogEvent

ServerEmbeddingInitializationAttemptFailedRemoteEvent describes a failed remote initialization attempt.

func ServerEmbeddingInitializationRetryInterruptedEvent

func ServerEmbeddingInitializationRetryInterruptedEvent() LogEvent

ServerEmbeddingInitializationRetryInterruptedEvent describes a shutdown-interrupted retry.

func ServerEmbeddingInitializationRetryingEvent

func ServerEmbeddingInitializationRetryingEvent(wait time.Duration) LogEvent

ServerEmbeddingInitializationRetryingEvent describes an exponential-backoff retry.

func ServerEmbeddingModelLoadingEvent

func ServerEmbeddingModelLoadingEvent(model, provider, note string) LogEvent

ServerEmbeddingModelLoadingEvent describes asynchronous embedding initialization.

func ServerEmbeddingRetryIntervalCappedEvent

func ServerEmbeddingRetryIntervalCappedEvent(interval time.Duration) LogEvent

ServerEmbeddingRetryIntervalCappedEvent describes transition to periodic retries.

func ServerEmbeddingRetryLoopStoppedEvent

func ServerEmbeddingRetryLoopStoppedEvent() LogEvent

ServerEmbeddingRetryLoopStoppedEvent describes retry-loop termination during shutdown.

func ServerEmbeddingsReadyLocalEvent

func ServerEmbeddingsReadyLocalEvent(model string, dimensions int) LogEvent

ServerEmbeddingsReadyLocalEvent describes a ready local embedding provider.

func ServerEmbeddingsReadyRemoteEvent

func ServerEmbeddingsReadyRemoteEvent(provider, url, model string, dimensions int) LogEvent

ServerEmbeddingsReadyRemoteEvent describes a ready remote embedding provider.

func ServerGraphQLEnabledEvent

func ServerGraphQLEnabledEvent(route string) LogEvent

ServerGraphQLEnabledEvent describes successful GraphQL route registration.

func ServerGraphQLRequestEvent

func ServerGraphQLRequestEvent(method, path string, duration time.Duration) LogEvent

ServerGraphQLRequestEvent describes an enabled GraphQL request trace.

func ServerHTTP2EnabledEvent

func ServerHTTP2EnabledEvent(mode, compat string) LogEvent

ServerHTTP2EnabledEvent describes the configured HTTP/2 transport mode.

func ServerHTTPPanicRecoveredEvent

func ServerHTTPPanicRecoveredEvent(value string) LogEvent

ServerHTTPPanicRecoveredEvent describes a panic recovered at the HTTP boundary.

func ServerHTTPPanicStackTraceEvent

func ServerHTTPPanicStackTraceEvent(stack string) LogEvent

ServerHTTPPanicStackTraceEvent describes a debug-only recovered panic stack.

func ServerHTTPRequestEvent

func ServerHTTPRequestEvent(method, path string, status int, duration time.Duration) LogEvent

ServerHTTPRequestEvent describes a completed HTTP request.

func ServerHTTPServeFailedEvent

func ServerHTTPServeFailedEvent(err error) LogEvent

ServerHTTPServeFailedEvent describes an unexpected HTTP serving failure.

func ServerHeimdallActionRegisteredEvent

func ServerHeimdallActionRegisteredEvent(action string) LogEvent

ServerHeimdallActionRegisteredEvent describes a registered Heimdall action.

func ServerHeimdallDisabledEvent

func ServerHeimdallDisabledEvent(subsystem, overrideEnv string) LogEvent

ServerHeimdallDisabledEvent describes startup with Heimdall disabled.

func ServerHeimdallInitializationFailedEvent

func ServerHeimdallInitializationFailedEvent(err error, remediation string) LogEvent

ServerHeimdallInitializationFailedEvent describes a Heimdall initialization failure.

func ServerHeimdallInitializingEvent

func ServerHeimdallInitializingEvent() LogEvent

ServerHeimdallInitializingEvent describes asynchronous Heimdall initialization startup.

func ServerHeimdallPluginsDirectoryDuplicateEvent

func ServerHeimdallPluginsDirectoryDuplicateEvent(heimdallDir, pluginsDir string) LogEvent

ServerHeimdallPluginsDirectoryDuplicateEvent describes duplicate plugin directories.

func ServerHeimdallPluginsDirectoryEmptyEvent

func ServerHeimdallPluginsDirectoryEmptyEvent() LogEvent

ServerHeimdallPluginsDirectoryEmptyEvent describes an unset Heimdall plugin directory.

func ServerHeimdallPluginsLoadFailedEvent

func ServerHeimdallPluginsLoadFailedEvent(dir string, err error) LogEvent

ServerHeimdallPluginsLoadFailedEvent describes a Heimdall plugin load failure.

func ServerHeimdallPluginsLoadingEvent

func ServerHeimdallPluginsLoadingEvent(dir string) LogEvent

ServerHeimdallPluginsLoadingEvent describes a Heimdall plugin load attempt.

func ServerHeimdallPluginsMissingEvent

func ServerHeimdallPluginsMissingEvent(remediation string) LogEvent

ServerHeimdallPluginsMissingEvent describes startup without loaded Heimdall plugins.

func ServerHeimdallProviderResolvedEvent

func ServerHeimdallProviderResolvedEvent(provider, overrideEnv string) LogEvent

ServerHeimdallProviderResolvedEvent describes the resolved Heimdall provider.

func ServerHeimdallReadyEvent

func ServerHeimdallReadyEvent(model string, pluginsLoaded, actionsAvailable int, chatRoute, statusRoute string) LogEvent

ServerHeimdallReadyEvent describes completed Heimdall initialization.

func ServerMCPDisabledEvent

func ServerMCPDisabledEvent() LogEvent

ServerMCPDisabledEvent describes startup with MCP disabled by configuration.

func ServerOAuthCallbackFailedEvent

func ServerOAuthCallbackFailedEvent() LogEvent

ServerOAuthCallbackFailedEvent describes an OAuth callback failure.

func ServerOAuthRedirectStateStoredEvent

func ServerOAuthRedirectStateStoredEvent(statePrefix string) LogEvent

ServerOAuthRedirectStateStoredEvent describes temporary OAuth state creation.

func ServerOAuthUserAuthenticatedEvent

func ServerOAuthUserAuthenticatedEvent() LogEvent

ServerOAuthUserAuthenticatedEvent describes a successful OAuth callback.

func ServerQdrantGRPCEnabledEvent

func ServerQdrantGRPCEnabledEvent(database, address string) LogEvent

ServerQdrantGRPCEnabledEvent describes a running Qdrant-compatible gRPC server.

func ServerRBACAllowlistLoadFailedEvent

func ServerRBACAllowlistLoadFailedEvent(err error) LogEvent

ServerRBACAllowlistLoadFailedEvent describes an RBAC allowlist load failure.

func ServerRBACAllowlistSaveFailedEvent

func ServerRBACAllowlistSaveFailedEvent() LogEvent

ServerRBACAllowlistSaveFailedEvent describes a failed database allowlist update.

func ServerRBACAllowlistSeedFailedEvent

func ServerRBACAllowlistSeedFailedEvent() LogEvent

ServerRBACAllowlistSeedFailedEvent describes an RBAC allowlist seed failure.

func ServerRBACPrivilegesLoadFailedEvent

func ServerRBACPrivilegesLoadFailedEvent(err error) LogEvent

ServerRBACPrivilegesLoadFailedEvent describes an RBAC privileges load failure.

func ServerRBACPrivilegesPutMatrixFailedEvent

func ServerRBACPrivilegesPutMatrixFailedEvent() LogEvent

ServerRBACPrivilegesPutMatrixFailedEvent describes a failed privilege matrix update.

func ServerRBACRoleEntitlementsLoadFailedEvent

func ServerRBACRoleEntitlementsLoadFailedEvent(err error) LogEvent

ServerRBACRoleEntitlementsLoadFailedEvent describes an RBAC role entitlements load failure.

func ServerRBACRoleEntitlementsSetFailedEvent

func ServerRBACRoleEntitlementsSetFailedEvent(count int) LogEvent

ServerRBACRoleEntitlementsSetFailedEvent describes a failed role entitlement update.

func ServerRBACRolesLoadFailedEvent

func ServerRBACRolesLoadFailedEvent(err error) LogEvent

ServerRBACRolesLoadFailedEvent describes an RBAC role store load failure.

func ServerRateLimitEnabledEvent

func ServerRateLimitEnabledEvent(perMinute, perHour int, scope string) LogEvent

ServerRateLimitEnabledEvent describes enabled request rate limiting.

func ServerRemoteCredentialKeyFallbackEvent

func ServerRemoteCredentialKeyFallbackEvent(fallback, remediation string) LogEvent

ServerRemoteCredentialKeyFallbackEvent describes credential key reuse.

func ServerRetentionDefaultPolicyAddFailedEvent

func ServerRetentionDefaultPolicyAddFailedEvent(policyID string, err error) LogEvent

ServerRetentionDefaultPolicyAddFailedEvent describes a default policy load failure.

func ServerSearchChunkedQueryEmbeddingFailedEvent

func ServerSearchChunkedQueryEmbeddingFailedEvent(err error) LogEvent

ServerSearchChunkedQueryEmbeddingFailedEvent describes a chunk embedding fallback.

func ServerSearchQueryEmbeddingFailedEvent

func ServerSearchQueryEmbeddingFailedEvent(err error) LogEvent

ServerSearchQueryEmbeddingFailedEvent describes a query embedding fallback.

func ServerSearchReconcileFailedEvent

func ServerSearchReconcileFailedEvent(database string, err error) LogEvent

ServerSearchReconcileFailedEvent describes a search index startup failure during reconciliation.

func ServerSearchReconcileStorageUnavailableEvent

func ServerSearchReconcileStorageUnavailableEvent(database string, err error) LogEvent

ServerSearchReconcileStorageUnavailableEvent describes a storage lookup failure during startup search reconciliation.

func ServerSearchRequestEvent

func ServerSearchRequestEvent(database, query string) LogEvent

ServerSearchRequestEvent describes an HTTP search request.

func ServerSearchRerankAPIURLMissingEvent

func ServerSearchRerankAPIURLMissingEvent(subsystem, provider, requiredEnv string) LogEvent

ServerSearchRerankAPIURLMissingEvent describes an incomplete external reranker configuration.

func ServerSearchRerankDisabledEvent

func ServerSearchRerankDisabledEvent(subsystem, overrideEnv string) LogEvent

ServerSearchRerankDisabledEvent describes startup without search reranking.

func ServerSearchRerankerHealthCheckFailedEvent

func ServerSearchRerankerHealthCheckFailedEvent(err error) LogEvent

ServerSearchRerankerHealthCheckFailedEvent describes a reranker health-check failure.

func ServerSearchRerankerLoadingEvent

func ServerSearchRerankerLoadingEvent(subsystem, provider, modelPath, note string) LogEvent

ServerSearchRerankerLoadingEvent describes asynchronous local reranker loading.

func ServerSearchRerankerModelUnavailableEvent

func ServerSearchRerankerModelUnavailableEvent(err error) LogEvent

ServerSearchRerankerModelUnavailableEvent describes a local reranker load failure.

func ServerSearchRerankerReadyExternalEvent

func ServerSearchRerankerReadyExternalEvent(subsystem, provider, url string) LogEvent

ServerSearchRerankerReadyExternalEvent describes a configured external reranker.

func ServerSearchRerankerReadyLocalEvent

func ServerSearchRerankerReadyLocalEvent(subsystem, model string) LogEvent

ServerSearchRerankerReadyLocalEvent describes a configured local reranker.

func ServerSearchStorageLookupFailedEvent

func ServerSearchStorageLookupFailedEvent(database string, err error) LogEvent

ServerSearchStorageLookupFailedEvent describes a search storage lookup failure.

func ServerSearchTimingEvent

func ServerSearchTimingEvent(fields ServerSearchTimingFields) LogEvent

ServerSearchTimingEvent describes detailed search diagnostics.

func ServerSlowQueryEvent

func ServerSlowQueryEvent(message string) LogEvent

ServerSlowQueryEvent describes a query exceeding the configured threshold.

func ServerSlowQueryLogOpenFailedEvent

func ServerSlowQueryLogOpenFailedEvent(subsystem, file string, err error) LogEvent

ServerSlowQueryLogOpenFailedEvent describes an unavailable slow-query log file.

func ServerSlowQueryLoggingConfiguredEvent

func ServerSlowQueryLoggingConfiguredEvent(subsystem, file string, threshold time.Duration) LogEvent

ServerSlowQueryLoggingConfiguredEvent describes file-backed slow-query logging.

func ServerSlowQueryLoggingEnabledEvent

func ServerSlowQueryLoggingEnabledEvent(subsystem string, threshold time.Duration) LogEvent

ServerSlowQueryLoggingEnabledEvent describes enabled in-process slow-query logging.

func ServerUIEnabledEvent

func ServerUIEnabledEvent(route string) LogEvent

ServerUIEnabledEvent describes successful browser UI registration.

func ServerUIHeadlessEvent

func ServerUIHeadlessEvent() LogEvent

ServerUIHeadlessEvent describes UI disablement in headless mode.

func ServerUIInitializationFailedEvent

func ServerUIInitializationFailedEvent(err error) LogEvent

ServerUIInitializationFailedEvent describes unavailable browser UI assets.

func StorageWALCorruptedEmbeddingsSkippedEvent

func StorageWALCorruptedEmbeddingsSkippedEvent(skipped int, format string) LogEvent

StorageWALCorruptedEmbeddingsSkippedEvent describes recoverable corrupted embeddings.

func StorageWALIncompleteWriteEvent

func StorageWALIncompleteWriteEvent() LogEvent

StorageWALIncompleteWriteEvent describes an incomplete atomic WAL tail.

type Manager

type Manager struct {
	// contains filtered or unexported fields
}

Manager owns an immutable localization bundle and process-default locale.

func NewManager

func NewManager(defaultPreferences []language.Tag, logger *slog.Logger) (*Manager, error)

NewManager loads and validates all embedded catalogs.

func (*Manager) DefaultTag

func (m *Manager) DefaultTag() language.Tag

DefaultTag returns the resolved immutable process-default language.

func (*Manager) Log

func (m *Manager) Log(ctx context.Context, logger *slog.Logger, level slog.Level, event LogEvent)

Log renders an event message for ctx and emits its stable identity and fields.

func (*Manager) Match

func (m *Manager) Match(preferred ...language.Tag) Match

Match resolves ordered preferences against installed catalogs.

func (*Manager) MissingCatalogEntryCount

func (m *Manager) MissingCatalogEntryCount() uint64

MissingCatalogEntryCount returns the number of render attempts that could not find a message in the selected catalog.

func (*Manager) MustRenderEnglish

func (m *Manager) MustRenderEnglish(message Message) string

MustRenderEnglish renders the guaranteed source-language fallback.

func (*Manager) Render

func (m *Manager) Render(ctx context.Context, message Message) (string, language.Tag, error)

Render formats a message using context preferences or the process default.

func (*Manager) Resolve

func (m *Manager) Resolve(source string, preferred ...language.Tag) Match

Resolve selects a language and emits a bounded warning when no exact pack exists.

func (*Manager) SupportedTags

func (m *Manager) SupportedTags() []language.Tag

SupportedTags returns the installed catalog languages.

type Match

type Match struct {
	Requested  language.Tag
	Tag        language.Tag
	Confidence language.Confidence
	Exact      bool
}

Match describes how requested preferences resolved to an installed catalog.

type Message

type Message struct {
	ID          MessageID
	Fallback    string
	Data        map[string]any
	PluralCount any
}

Message identifies localizable text and the named values used to render it.

func APITokenAdminRequired

func APITokenAdminRequired() Message

APITokenAdminRequired identifies a non-admin API token generation request.

func APITokenGenerationFailed

func APITokenGenerationFailed() Message

APITokenGenerationFailed identifies an internal API token generation failure.

func AdminCLIAdditionalCommandsHeading

func AdminCLIAdditionalCommandsHeading() Message

func AdminCLIAdditionalHelpTopicsHeading

func AdminCLIAdditionalHelpTopicsHeading() Message

func AdminCLIAliasesHeading

func AdminCLIAliasesHeading() Message

func AdminCLIArrayDelimiterFlag

func AdminCLIArrayDelimiterFlag() Message

func AdminCLIAvailableCommandsHeading

func AdminCLIAvailableCommandsHeading() Message

func AdminCLIBadToleranceFlag

func AdminCLIBadToleranceFlag() Message

func AdminCLIBuildIndexesFlag

func AdminCLIBuildIndexesFlag() Message

func AdminCLIChunkSizeFlag

func AdminCLIChunkSizeFlag() Message

func AdminCLICompletionCommandLong

func AdminCLICompletionCommandLong(command string) Message

func AdminCLICompletionCommandShort

func AdminCLICompletionCommandShort() Message

func AdminCLIConstraintsFileFlag

func AdminCLIConstraintsFileFlag() Message

func AdminCLIDataDirectoryFlag

func AdminCLIDataDirectoryFlag() Message

func AdminCLIDatabaseInfoNotImplemented

func AdminCLIDatabaseInfoNotImplemented() Message

func AdminCLIDatabaseShort

func AdminCLIDatabaseShort() Message

func AdminCLIDelimiterFlag

func AdminCLIDelimiterFlag() Message

func AdminCLIErrorPrefix

func AdminCLIErrorPrefix() Message

func AdminCLIExactArgs

func AdminCLIExactArgs(expected, received int) Message

func AdminCLIExamplesHeading

func AdminCLIExamplesHeading() Message

func AdminCLIExportShort

func AdminCLIExportShort() Message

func AdminCLIFlagsHeading

func AdminCLIFlagsHeading() Message

func AdminCLIFromPathFlag

func AdminCLIFromPathFlag() Message

func AdminCLIFullImportShort

func AdminCLIFullImportShort() Message

func AdminCLIGlobalFlagsHeading

func AdminCLIGlobalFlagsHeading() Message

func AdminCLIHelpCommandLong

func AdminCLIHelpCommandLong(command string) Message

func AdminCLIHelpCommandShort

func AdminCLIHelpCommandShort() Message

func AdminCLIHelpFlag

func AdminCLIHelpFlag(command string) Message

func AdminCLIHelpMoreInformation

func AdminCLIHelpMoreInformation(commandPath string) Message

func AdminCLIIDTypeFlag

func AdminCLIIDTypeFlag() Message

func AdminCLIIgnoreEmptyStringsFlag

func AdminCLIIgnoreEmptyStringsFlag() Message

func AdminCLIIgnoreExtraColumnsFlag

func AdminCLIIgnoreExtraColumnsFlag() Message

func AdminCLIImportShort

func AdminCLIImportShort() Message

func AdminCLIIncrementalImportShort

func AdminCLIIncrementalImportShort() Message

func AdminCLIIncrementalNotImplemented

func AdminCLIIncrementalNotImplemented() Message

func AdminCLINeo4jCSVExportShort

func AdminCLINeo4jCSVExportShort() Message

func AdminCLINodesFlag

func AdminCLINodesFlag() Message

func AdminCLINormalizeTypesFlag

func AdminCLINormalizeTypesFlag() Message

func AdminCLIQuoteFlag

func AdminCLIQuoteFlag() Message

func AdminCLIRelationshipsFlag

func AdminCLIRelationshipsFlag() Message

func AdminCLIReportFileFlag

func AdminCLIReportFileFlag() Message

func AdminCLIRootShort

func AdminCLIRootShort() Message

func AdminCLISchemaFlag

func AdminCLISchemaFlag() Message

func AdminCLIServerShort

func AdminCLIServerShort() Message

func AdminCLIServerStatusNotImplemented

func AdminCLIServerStatusNotImplemented() Message

func AdminCLIServerStatusShort

func AdminCLIServerStatusShort() Message

func AdminCLISkipBadRelationshipsFlag

func AdminCLISkipBadRelationshipsFlag() Message

func AdminCLISkipDuplicateNodesFlag

func AdminCLISkipDuplicateNodesFlag() Message

func AdminCLIToPathFlag

func AdminCLIToPathFlag() Message

func AdminCLIToPathRequired

func AdminCLIToPathRequired() Message

func AdminCLIUnknownCommand

func AdminCLIUnknownCommand(argument, command string) Message

func AdminCLIUsageHeading

func AdminCLIUsageHeading() Message

func AdminCLIVectorDelimiterFlag

func AdminCLIVectorDelimiterFlag() Message

func AdminCLIVerboseFlag

func AdminCLIVerboseFlag() Message

func AdminCLIVersionShort

func AdminCLIVersionShort() Message

func AdminExportCustomQuoteUnsupported

func AdminExportCustomQuoteUnsupported() Message

func AdminExportOutputDirectoryRequired

func AdminExportOutputDirectoryRequired() Message

func AdminImportActualIDUnsupported

func AdminImportActualIDUnsupported() Message

func AdminImportBadEndRelationship

func AdminImportBadEndRelationship(row int) Message

func AdminImportBadEndToleranceExceeded

func AdminImportBadEndToleranceExceeded(row int, badCount int64, tolerance int) Message

func AdminImportBadStartRelationship

func AdminImportBadStartRelationship(row int) Message

func AdminImportBadStartToleranceExceeded

func AdminImportBadStartToleranceExceeded(row int, badCount int64, tolerance int) Message

func AdminImportCSVParseError

func AdminImportCSVParseError(where string) Message

func AdminImportCustomQuoteUnsupported

func AdminImportCustomQuoteUnsupported() Message

func AdminImportDatabaseNameRequired

func AdminImportDatabaseNameRequired() Message

func AdminImportDuplicateNodeID

func AdminImportDuplicateNodeID(row int) Message

func AdminImportDuplicateRelationshipID

func AdminImportDuplicateRelationshipID() Message

func AdminImportDuplicateRelationshipIDAtRow

func AdminImportDuplicateRelationshipIDAtRow(row int) Message

func AdminImportEmptySource

func AdminImportEmptySource() Message

func AdminImportInvalidVectorDimensions

func AdminImportInvalidVectorDimensions(header string) Message

func AdminImportNoCSVFiles

func AdminImportNoCSVFiles() Message

func AdminImportNoNodeCSVFiles

func AdminImportNoNodeCSVFiles() Message

func AdminImportNodeSourceRequired

func AdminImportNodeSourceRequired() Message

func AdminImportOpenCSVFailed

func AdminImportOpenCSVFailed() Message

AdminImportOpenCSVFailed identifies a CSV source open failure.

func AdminImportOpenGzipCSVFailed

func AdminImportOpenGzipCSVFailed() Message

func AdminImportOpenZipCSVFailed

func AdminImportOpenZipCSVFailed() Message

func AdminImportOpenZipMemberFailed

func AdminImportOpenZipMemberFailed() Message

func AdminImportReadHeaderFailed

func AdminImportReadHeaderFailed() Message

func AdminImportRelationshipIDsRequired

func AdminImportRelationshipIDsRequired() Message

func AdminImportRelationshipPrefixLimit

func AdminImportRelationshipPrefixLimit() Message

func AdminImportRelationshipTypeRequired

func AdminImportRelationshipTypeRequired() Message

func AdminImportScanDirectoryFailed

func AdminImportScanDirectoryFailed() Message

func AdminImportSchemaApplicationFailed

func AdminImportSchemaApplicationFailed() Message

func AdminImportStorageEngineRequired

func AdminImportStorageEngineRequired() Message

func AdminImportTargetNotEmpty

func AdminImportTargetNotEmpty() Message

func AdminImportUnsupportedCSVHeader

func AdminImportUnsupportedCSVHeader(path string) Message

func AdminImportUnsupportedHeaderToken

func AdminImportUnsupportedHeaderToken(token string) Message

func AdminImportUnsupportedPropertyType

func AdminImportUnsupportedPropertyType(propertyType string) Message

func AdminImportZipSingleFileRequired

func AdminImportZipSingleFileRequired() Message

func AdminPermissionRequired

func AdminPermissionRequired() Message

AdminPermissionRequired identifies missing administrator permission.

func AuthenticationNotConfigured

func AuthenticationNotConfigured() Message

AuthenticationNotConfigured identifies an unavailable HTTP authentication service.

func AutoEmbedNotEnabled

func AutoEmbedNotEnabled() Message

AutoEmbedNotEnabled identifies an unavailable automatic embedding queue.

func BackupComplete

func BackupComplete() Message

func BoltAuthenticationNotConfigured

func BoltAuthenticationNotConfigured() Message

BoltAuthenticationNotConfigured identifies a server requiring auth without an authenticator.

func BoltAuthenticationRequired

func BoltAuthenticationRequired() Message

BoltAuthenticationRequired identifies a Bolt HELLO without required credentials.

func BoltBookmarkValidationFailed

func BoltBookmarkValidationFailed(cause error) Message

BoltBookmarkValidationFailed identifies an invalid Bolt bookmark.

func BoltDatabaseNotFoundWithCause

func BoltDatabaseNotFoundWithCause(name string, cause error) Message

BoltDatabaseNotFoundWithCause identifies a Bolt database lookup failure with diagnostic detail.

func BoltInvalidCredentials

func BoltInvalidCredentials() Message

BoltInvalidCredentials identifies rejected Bolt basic credentials.

func BoltInvalidOrExpiredToken

func BoltInvalidOrExpiredToken() Message

BoltInvalidOrExpiredToken identifies a rejected Bolt bearer token.

func BoltLogAuthenticationFailed

func BoltLogAuthenticationFailed() Message

BoltLogAuthenticationFailed describes failed Bolt authentication.

func BoltLogConnectionHandlerPanic

func BoltLogConnectionHandlerPanic() Message

BoltLogConnectionHandlerPanic describes recovery from a connection handler panic.

func BoltLogDiscoveryRefreshFailed

func BoltLogDiscoveryRefreshFailed() Message

BoltLogDiscoveryRefreshFailed describes a discovery response refresh failure.

func BoltLogHandshakeFailed

func BoltLogHandshakeFailed() Message

BoltLogHandshakeFailed describes a Bolt protocol handshake failure.

func BoltLogHello

func BoltLogHello() Message

BoltLogHello describes an authenticated Bolt session HELLO.

func BoltLogHelloSchemeNone

func BoltLogHelloSchemeNone() Message

BoltLogHelloSchemeNone describes an authentication diagnostic for a scheme-none HELLO.

func BoltLogMessageHandlingError

func BoltLogMessageHandlingError() Message

BoltLogMessageHandlingError describes a session message handling failure.

func BoltLogQuery

func BoltLogQuery() Message

BoltLogQuery describes a query selected for operator diagnostic logging.

func BoltLogQueryError

func BoltLogQueryError() Message

BoltLogQueryError describes a query execution error.

func BoltLogRun

func BoltLogRun() Message

BoltLogRun describes Bolt RUN timing and result metadata.

func BoltLogServerListening

func BoltLogServerListening() Message

BoltLogServerListening describes a Bolt listener ready to accept connections.

func BoltLogTransactionCleanupFailed

func BoltLogTransactionCleanupFailed() Message

BoltLogTransactionCleanupFailed describes failed explicit transaction cleanup.

func BoltLogTransactionCommitFailed

func BoltLogTransactionCommitFailed() Message

BoltLogTransactionCommitFailed describes a failed explicit transaction commit.

func BoltLogTransactionTerminated

func BoltLogTransactionTerminated() Message

BoltLogTransactionTerminated describes normal explicit transaction termination.

func BoltLogTransactionTimeoutCleanupCompleted

func BoltLogTransactionTimeoutCleanupCompleted() Message

BoltLogTransactionTimeoutCleanupCompleted describes completed cleanup after transaction timeout.

func BoltLogTransactionTimeoutCleanupRequested

func BoltLogTransactionTimeoutCleanupRequested() Message

BoltLogTransactionTimeoutCleanupRequested describes requested cleanup after transaction timeout.

func BoltLogTransportSniffFailed

func BoltLogTransportSniffFailed() Message

BoltLogTransportSniffFailed describes a transport detection failure.

func BoltLogUnencryptedConnectionRejected

func BoltLogUnencryptedConnectionRejected() Message

BoltLogUnencryptedConnectionRejected describes a connection rejected because TLS is required.

func BoltLogWebSocketCookieBearerRejected

func BoltLogWebSocketCookieBearerRejected() Message

BoltLogWebSocketCookieBearerRejected describes a rejected WebSocket cookie bearer token.

func BoltLogWebSocketUpgradeCredentials

func BoltLogWebSocketUpgradeCredentials() Message

BoltLogWebSocketUpgradeCredentials describes credential presence on a WebSocket upgrade.

func BoltLogWebSocketUpgradeFailed

func BoltLogWebSocketUpgradeFailed() Message

BoltLogWebSocketUpgradeFailed describes a failed WebSocket protocol upgrade.

func BoltLogWebSocketUpgradeReadRequestFailed

func BoltLogWebSocketUpgradeReadRequestFailed() Message

BoltLogWebSocketUpgradeReadRequestFailed describes a failed WebSocket upgrade request read.

func BoltNoTransactionToCommit

func BoltNoTransactionToCommit() Message

BoltNoTransactionToCommit identifies COMMIT without an active transaction.

func BoltRunMessageParseFailed

func BoltRunMessageParseFailed(cause error) Message

BoltRunMessageParseFailed identifies a malformed Bolt RUN message.

func BoltUnsupportedAuthScheme

func BoltUnsupportedAuthScheme(scheme string) Message

BoltUnsupportedAuthScheme identifies an unsupported Bolt HELLO authentication scheme.

func CatalogEntryMissing

func CatalogEntryMissing(language string, messageID MessageID) Message

CatalogEntryMissing reports a missing translated catalog entry.

func CypherANTLRParseEmptyQuery

func CypherANTLRParseEmptyQuery() Message

CypherANTLRParseEmptyQuery identifies an empty query passed to Parse.

func CypherANTLRParseSyntaxError

func CypherANTLRParseSyntaxError(detail string) Message

CypherANTLRParseSyntaxError identifies invalid syntax encountered by Parse.

func CypherANTLRValidateEmptyQuery

func CypherANTLRValidateEmptyQuery() Message

CypherANTLRValidateEmptyQuery identifies an empty query passed to Validate.

func CypherANTLRValidateSyntaxError

func CypherANTLRValidateSyntaxError(detail string) Message

CypherANTLRValidateSyntaxError identifies invalid syntax encountered by Validate.

func CypherAdminAliasDoesNotExist

func CypherAdminAliasDoesNotExist(alias string) Message

CypherAdminAliasDoesNotExist identifies a missing alias during DROP ALIAS.

func CypherAdminAliasNameEmpty

func CypherAdminAliasNameEmpty(command string) Message

CypherAdminAliasNameEmpty identifies an empty alias name.

func CypherAdminAliasNameExpected

func CypherAdminAliasNameExpected(command string) Message

CypherAdminAliasNameExpected identifies a missing alias name.

func CypherAdminClauseExpected

func CypherAdminClauseExpected(command, clause string) Message

CypherAdminClauseExpected identifies a required machine-language command clause.

func CypherAdminCreateAliasFailed

func CypherAdminCreateAliasFailed(alias, database string, cause error) Message

CypherAdminCreateAliasFailed identifies a wrapped alias creation failure.

func CypherAdminCreateDatabaseFailed

func CypherAdminCreateDatabaseFailed(database string, cause error) Message

CypherAdminCreateDatabaseFailed identifies a wrapped database creation failure.

func CypherAdminDatabaseAlreadyExists

func CypherAdminDatabaseAlreadyExists(database string) Message

CypherAdminDatabaseAlreadyExists identifies a conflicting database creation.

func CypherAdminDatabaseDoesNotExist

func CypherAdminDatabaseDoesNotExist(database string) Message

CypherAdminDatabaseDoesNotExist identifies a missing database during DROP DATABASE.

func CypherAdminDatabaseManagerUnavailable

func CypherAdminDatabaseManagerUnavailable(command string) Message

CypherAdminDatabaseManagerUnavailable identifies an admin command that requires multi-database support.

func CypherAdminDatabaseNameEmpty

func CypherAdminDatabaseNameEmpty(command string) Message

CypherAdminDatabaseNameEmpty identifies an empty database name.

func CypherAdminDatabaseNameExpected

func CypherAdminDatabaseNameExpected(command string) Message

CypherAdminDatabaseNameExpected identifies a missing database name.

func CypherAdminDatabaseNotFound

func CypherAdminDatabaseNotFound(database string, cause error) Message

CypherAdminDatabaseNotFound identifies a wrapped database limit lookup failure.

func CypherAdminDropAliasFailed

func CypherAdminDropAliasFailed(alias string, cause error) Message

CypherAdminDropAliasFailed identifies a wrapped alias deletion failure.

func CypherAdminDropDatabaseFailed

func CypherAdminDropDatabaseFailed(database string, cause error) Message

CypherAdminDropDatabaseFailed identifies a wrapped database deletion failure.

func CypherAdminInvalidAliasName

func CypherAdminInvalidAliasName(alias string) Message

CypherAdminInvalidAliasName identifies whitespace in an alias name.

func CypherAdminInvalidDatabaseName

func CypherAdminInvalidDatabaseName(database string) Message

CypherAdminInvalidDatabaseName identifies whitespace in a database name.

func CypherAdminInvalidDurationLimitValue

func CypherAdminInvalidDurationLimitValue(limit string, cause error) Message

CypherAdminInvalidDurationLimitValue identifies a malformed duration limit value.

func CypherAdminInvalidIdentifier

func CypherAdminInvalidIdentifier(identifier string) Message

CypherAdminInvalidIdentifier identifies unsupported nested backticks in an identifier.

func CypherAdminInvalidLimitAssignment

func CypherAdminInvalidLimitAssignment(assignment string) Message

CypherAdminInvalidLimitAssignment identifies a malformed limit assignment.

func CypherAdminInvalidLimitValue

func CypherAdminInvalidLimitValue(limit string, cause error) Message

CypherAdminInvalidLimitValue identifies a malformed numeric limit value.

func CypherAdminInvalidLimitsType

func CypherAdminInvalidLimitsType() Message

CypherAdminInvalidLimitsType identifies an unexpected database manager response type.

func CypherAdminInvalidSyntax

func CypherAdminInvalidSyntax(command string) Message

CypherAdminInvalidSyntax identifies malformed admin command syntax.

func CypherAdminKeywordExpected

func CypherAdminKeywordExpected(command, keyword string) Message

CypherAdminKeywordExpected identifies a required machine-language keyword.

func CypherAdminLimitAssignmentExpected

func CypherAdminLimitAssignmentExpected() Message

CypherAdminLimitAssignmentExpected identifies a missing ALTER DATABASE limit assignment.

func CypherAdminSetDatabaseLimitsFailed

func CypherAdminSetDatabaseLimitsFailed(database string, cause error) Message

CypherAdminSetDatabaseLimitsFailed identifies a wrapped database limit update failure.

func CypherAdminTermExpected

func CypherAdminTermExpected(command, term string) Message

CypherAdminTermExpected identifies a required machine-language command term.

func CypherAdminUnknownLimitName

func CypherAdminUnknownLimitName(limit string) Message

CypherAdminUnknownLimitName identifies an unsupported limit key.

func CypherCommandRoutingBacktickIdentifierUnterminated

func CypherCommandRoutingBacktickIdentifierUnterminated() Message

func CypherCommandRoutingCallTailLimitInvalid

func CypherCommandRoutingCallTailLimitInvalid(token string) Message

func CypherCommandRoutingCallTailSeedRequired

func CypherCommandRoutingCallTailSeedRequired() Message

func CypherCommandRoutingCallTailSkipInvalid

func CypherCommandRoutingCallTailSkipInvalid(token string) Message

func CypherCommandRoutingEmptyCommand

func CypherCommandRoutingEmptyCommand() Message

func CypherCommandRoutingFabricConstituentsFailed

func CypherCommandRoutingFabricConstituentsFailed(database string, cause error) Message

func CypherCommandRoutingFabricNotPrepared

func CypherCommandRoutingFabricNotPrepared() Message

func CypherCommandRoutingFabricPreparedContextInvalid

func CypherCommandRoutingFabricPreparedContextInvalid() Message

func CypherCommandRoutingFabricShardTransactionFailed

func CypherCommandRoutingFabricShardTransactionFailed(database string, cause error) Message

func CypherCommandRoutingFabricStorageTypeInvalid

func CypherCommandRoutingFabricStorageTypeInvalid(database string) Message

func CypherCommandRoutingGraphReferenceArgumentEmpty

func CypherCommandRoutingGraphReferenceArgumentEmpty() Message

func CypherCommandRoutingGraphReferenceArgumentRequired

func CypherCommandRoutingGraphReferenceArgumentRequired() Message

func CypherCommandRoutingGraphReferenceInvalid

func CypherCommandRoutingGraphReferenceInvalid() Message

func CypherCommandRoutingGraphReferenceOpenParenExpected

func CypherCommandRoutingGraphReferenceOpenParenExpected(position int) Message

func CypherCommandRoutingGraphReferenceStringUnterminated

func CypherCommandRoutingGraphReferenceStringUnterminated() Message

func CypherCommandRoutingGraphReferenceUnterminated

func CypherCommandRoutingGraphReferenceUnterminated() Message

func CypherCommandRoutingParameterArgumentRequired

func CypherCommandRoutingParameterArgumentRequired() Message

func CypherCommandRoutingParameterEvaluationFailed

func CypherCommandRoutingParameterEvaluationFailed(parameter string, cause error) Message

func CypherCommandRoutingParameterExpressionUnresolved

func CypherCommandRoutingParameterExpressionUnresolved(parameter, expression string) Message

func CypherCommandRoutingParameterMapEntryEmpty

func CypherCommandRoutingParameterMapEntryEmpty() Message

func CypherCommandRoutingParameterMapEntryInvalid

func CypherCommandRoutingParameterMapEntryInvalid(entry string) Message

func CypherCommandRoutingParameterMapKeysStrings

func CypherCommandRoutingParameterMapKeysStrings() Message

func CypherCommandRoutingParameterMapRequired

func CypherCommandRoutingParameterMapRequired() Message

func CypherCommandRoutingParameterProducedNoValue

func CypherCommandRoutingParameterProducedNoValue(parameter string) Message

func CypherCommandRoutingParameterUsage

func CypherCommandRoutingParameterUsage() Message

func CypherCommandRoutingParameterValueRequired

func CypherCommandRoutingParameterValueRequired() Message

func CypherCommandRoutingProcedureMaxArguments

func CypherCommandRoutingProcedureMaxArguments(procedure string, maximum, actual int) Message

func CypherCommandRoutingProcedureMinArguments

func CypherCommandRoutingProcedureMinArguments(procedure string, minimum, actual int) Message

func CypherCommandRoutingShellUseDatabaseRequired

func CypherCommandRoutingShellUseDatabaseRequired() Message

func CypherCommandRoutingUnknownCommand

func CypherCommandRoutingUnknownCommand(command string) Message

func CypherCommandRoutingUnknownProcedure

func CypherCommandRoutingUnknownProcedure(procedure string) Message

func CypherCommandRoutingUnknownYieldColumn

func CypherCommandRoutingUnknownYieldColumn(column string) Message

func CypherCommandRoutingUseBackendUnsupported

func CypherCommandRoutingUseBackendUnsupported(target string) Message

func CypherCommandRoutingUseBacktickUnterminated

func CypherCommandRoutingUseBacktickUnterminated() Message

func CypherCommandRoutingUseConstituentOutsideComposite

func CypherCommandRoutingUseConstituentOutsideComposite(target, constituent, composite string) Message

func CypherCommandRoutingUseDatabaseManagerUnavailable

func CypherCommandRoutingUseDatabaseManagerUnavailable(target string) Message

func CypherCommandRoutingUseDatabaseNotComposite

func CypherCommandRoutingUseDatabaseNotComposite(target, database string) Message

func CypherCommandRoutingUseDatabaseRequired

func CypherCommandRoutingUseDatabaseRequired() Message

func CypherCommandRoutingUseFailed

func CypherCommandRoutingUseFailed(target string, cause error) Message

func CypherCommandRoutingUseInvalid

func CypherCommandRoutingUseInvalid(cause error) Message

func CypherCommandRoutingUseStorageTypeInvalid

func CypherCommandRoutingUseStorageTypeInvalid(target string) Message

func CypherCommandRoutingWhereBooleanRequired

func CypherCommandRoutingWhereBooleanRequired(value string) Message

func CypherCompositeAddAliasUnexpectedToken

func CypherCompositeAddAliasUnexpectedToken(token string) Message

func CypherCompositeAddConstituentFailed

func CypherCompositeAddConstituentFailed(database string, cause error) Message

func CypherCompositeAlterActionExpected

func CypherCompositeAlterActionExpected() Message

func CypherCompositeAlterAddAliasExpected

func CypherCompositeAlterAddAliasExpected() Message

func CypherCompositeAlterDatabaseKeywordExpected

func CypherCompositeAlterDatabaseKeywordExpected() Message

func CypherCompositeAlterDatabaseNameEmpty

func CypherCompositeAlterDatabaseNameEmpty() Message

func CypherCompositeAlterDatabaseNameExpected

func CypherCompositeAlterDatabaseNameExpected() Message

func CypherCompositeAlterDropAliasExpected

func CypherCompositeAlterDropAliasExpected() Message

func CypherCompositeAlterInvalidSyntax

func CypherCompositeAlterInvalidSyntax() Message

func CypherCompositeAlterTokenizeFailed

func CypherCompositeAlterTokenizeFailed(cause error) Message

func CypherCompositeConstituentAccessModeEmpty

func CypherCompositeConstituentAccessModeEmpty() Message

func CypherCompositeConstituentAccessModeInvalid

func CypherCompositeConstituentAccessModeInvalid(cause error) Message

func CypherCompositeConstituentAccessModeUnsupported

func CypherCompositeConstituentAccessModeUnsupported() Message

func CypherCompositeConstituentAliasExpected

func CypherCompositeConstituentAliasExpected() Message

func CypherCompositeConstituentAliasNameEmpty

func CypherCompositeConstituentAliasNameEmpty() Message

func CypherCompositeConstituentAliasNameInvalid

func CypherCompositeConstituentAliasNameInvalid(cause error) Message

func CypherCompositeConstituentAuthModesConflict

func CypherCompositeConstituentAuthModesConflict() Message

func CypherCompositeConstituentDatabaseNameEmpty

func CypherCompositeConstituentDatabaseNameEmpty() Message

func CypherCompositeConstituentDatabaseNameInvalid

func CypherCompositeConstituentDatabaseNameInvalid(cause error) Message

func CypherCompositeConstituentForDatabaseExpected

func CypherCompositeConstituentForDatabaseExpected() Message

func CypherCompositeConstituentOIDCCredentialExpected

func CypherCompositeConstituentOIDCCredentialExpected() Message

func CypherCompositeConstituentPasswordEmpty

func CypherCompositeConstituentPasswordEmpty() Message

func CypherCompositeConstituentPasswordInvalid

func CypherCompositeConstituentPasswordInvalid(cause error) Message

func CypherCompositeConstituentRemoteRequired

func CypherCompositeConstituentRemoteRequired() Message

func CypherCompositeConstituentRemoteURIEmpty

func CypherCompositeConstituentRemoteURIEmpty() Message

func CypherCompositeConstituentRemoteURIExpected

func CypherCompositeConstituentRemoteURIExpected() Message

func CypherCompositeConstituentRemoteURIInvalid

func CypherCompositeConstituentRemoteURIInvalid(cause error) Message

func CypherCompositeConstituentSecretRefEmpty

func CypherCompositeConstituentSecretRefEmpty() Message

func CypherCompositeConstituentSecretRefExpected

func CypherCompositeConstituentSecretRefExpected() Message

func CypherCompositeConstituentSecretRefInvalid

func CypherCompositeConstituentSecretRefInvalid(cause error) Message

func CypherCompositeConstituentTypeContradictsAT

func CypherCompositeConstituentTypeContradictsAT() Message

func CypherCompositeConstituentTypeEmpty

func CypherCompositeConstituentTypeEmpty() Message

func CypherCompositeConstituentTypeInvalid

func CypherCompositeConstituentTypeInvalid(cause error) Message

func CypherCompositeConstituentTypeUnsupported

func CypherCompositeConstituentTypeUnsupported() Message

func CypherCompositeConstituentUnexpectedToken

func CypherCompositeConstituentUnexpectedToken(token string) Message

func CypherCompositeConstituentUserEmpty

func CypherCompositeConstituentUserEmpty() Message

func CypherCompositeConstituentUserInvalid

func CypherCompositeConstituentUserInvalid(cause error) Message

func CypherCompositeConstituentUserPasswordRequired

func CypherCompositeConstituentUserPasswordRequired() Message

func CypherCompositeCreateConstituentRequired

func CypherCompositeCreateConstituentRequired() Message

func CypherCompositeCreateDatabaseFailed

func CypherCompositeCreateDatabaseFailed(database string, cause error) Message

func CypherCompositeCreateDatabaseNameEmpty

func CypherCompositeCreateDatabaseNameEmpty() Message

func CypherCompositeCreateDatabaseNameExpected

func CypherCompositeCreateDatabaseNameExpected() Message

func CypherCompositeCreateInvalidSyntax

func CypherCompositeCreateInvalidSyntax() Message

func CypherCompositeCreateTokenizeFailed

func CypherCompositeCreateTokenizeFailed(cause error) Message

func CypherCompositeDatabaseManagerUnavailable

func CypherCompositeDatabaseManagerUnavailable(command string) Message

func CypherCompositeDropAliasNameEmpty

func CypherCompositeDropAliasNameEmpty() Message

func CypherCompositeDropDatabaseFailed

func CypherCompositeDropDatabaseFailed(database string, cause error) Message

func CypherCompositeDropDatabaseNameEmpty

func CypherCompositeDropDatabaseNameEmpty() Message

func CypherCompositeDropDatabaseNameExpected

func CypherCompositeDropDatabaseNameExpected() Message

func CypherCompositeDropInvalidSyntax

func CypherCompositeDropInvalidSyntax() Message

func CypherCompositeGetConstituentsFailed

func CypherCompositeGetConstituentsFailed(cause error) Message

func CypherCompositeRemoveConstituentFailed

func CypherCompositeRemoveConstituentFailed(database string, cause error) Message

func CypherCompositeShowConstituentsInvalidSyntax

func CypherCompositeShowConstituentsInvalidSyntax() Message

func CypherCompositeShowConstituentsNameExpected

func CypherCompositeShowConstituentsNameExpected() Message

func CypherCoreCaseEnvelopeInvalid

func CypherCoreCaseEnvelopeInvalid() Message

func CypherCoreCaseThenRequired

func CypherCoreCaseThenRequired(section string) Message

func CypherCoreCaseWhenRequired

func CypherCoreCaseWhenRequired() Message

func CypherCoreCompositeTargetRequired

func CypherCoreCompositeTargetRequired() Message

func CypherCoreEmbedderNotConfigured

func CypherCoreEmbedderNotConfigured() Message

func CypherCoreEmbeddingChunkFailed

func CypherCoreEmbeddingChunkFailed(nodeID string, cause error) Message

func CypherCoreEmbeddingConfiguredRequired

func CypherCoreEmbeddingConfiguredRequired() Message

func CypherCoreEmbeddingEmptyVector

func CypherCoreEmbeddingEmptyVector(nodeID string) Message

func CypherCoreEmbeddingNoOutput

func CypherCoreEmbeddingNoOutput() Message

func CypherCoreEmbeddingNodeFailed

func CypherCoreEmbeddingNodeFailed(nodeID string, cause error) Message

func CypherCoreEmbeddingTransactionStorageRequired

func CypherCoreEmbeddingTransactionStorageRequired() Message

func CypherCoreEmptyQuery

func CypherCoreEmptyQuery() Message

func CypherCoreExecutionPlanBuildFailed

func CypherCoreExecutionPlanBuildFailed(cause error) Message

func CypherCoreFulltextBadBoost

func CypherCoreFulltextBadBoost(boost string, cause error) Message

func CypherCoreFulltextBadRegex

func CypherCoreFulltextBadRegex(pattern string, cause error) Message

func CypherCoreFulltextBadWildcard

func CypherCoreFulltextBadWildcard(cause error) Message

func CypherCoreFulltextClosingParenthesisRequired

func CypherCoreFulltextClosingParenthesisRequired() Message

func CypherCoreFulltextNumberAfterBoostExpected

func CypherCoreFulltextNumberAfterBoostExpected() Message

func CypherCoreFulltextRangeCloseRequired

func CypherCoreFulltextRangeCloseRequired() Message

func CypherCoreFulltextRangeEndpointRequired

func CypherCoreFulltextRangeEndpointRequired() Message

func CypherCoreFulltextRangeTORequired

func CypherCoreFulltextRangeTORequired() Message

func CypherCoreFulltextUnexpectedToken

func CypherCoreFulltextUnexpectedToken(token string) Message

func CypherCoreImplicitTransactionCommitFailed

func CypherCoreImplicitTransactionCommitFailed(cause error) Message

func CypherCoreImplicitTransactionConfigureFailed

func CypherCoreImplicitTransactionConfigureFailed(cause error) Message

func CypherCoreImplicitTransactionPinFailed

func CypherCoreImplicitTransactionPinFailed(cause error) Message

func CypherCoreImplicitTransactionPrimeFailed

func CypherCoreImplicitTransactionPrimeFailed(cause error) Message

func CypherCoreImplicitTransactionStartFailed

func CypherCoreImplicitTransactionStartFailed(cause error) Message

func CypherCoreImplicitTransactionWALBeginFailed

func CypherCoreImplicitTransactionWALBeginFailed(cause error) Message

func CypherCoreIndexHintNotFound

func CypherCoreIndexHintNotFound(hint, label, property string) Message

func CypherCoreInvalidLabelName

func CypherCoreInvalidLabelName(label string) Message

func CypherCoreInvalidLabelReserved

func CypherCoreInvalidLabelReserved(label string) Message

func CypherCoreInvalidPropertyKey

func CypherCoreInvalidPropertyKey(key string) Message

func CypherCoreInvalidPropertyValue

func CypherCoreInvalidPropertyValue(key string) Message

func CypherCoreOptionalMatchRequired

func CypherCoreOptionalMatchRequired() Message

func CypherCoreParseFailed

func CypherCoreParseFailed(cause error) Message

func CypherCoreTypedAssignmentFailed

func CypherCoreTypedAssignmentFailed(value any, destinationType string) Message

func CypherCoreTypedDecodeRowFailed

func CypherCoreTypedDecodeRowFailed(cause error) Message

func CypherCoreTypedDestinationPointerRequired

func CypherCoreTypedDestinationPointerRequired() Message

func CypherCoreTypedDestinationUnsupported

func CypherCoreTypedDestinationUnsupported(kind string) Message

func CypherCoreTypedFieldFailed

func CypherCoreTypedFieldFailed(field string, cause error) Message

func CypherCoreTypedTimeParseFailed

func CypherCoreTypedTimeParseFailed(value string, cause error) Message

func CypherCoreUnterminatedStringLiteral

func CypherCoreUnterminatedStringLiteral() Message

func CypherGraphProceduresBuildGraphFailed

func CypherGraphProceduresBuildGraphFailed(cause error) Message

CypherGraphProceduresBuildGraphFailed identifies a wrapped link-prediction graph build failure.

func CypherGraphProceduresGraphDoesNotExist

func CypherGraphProceduresGraphDoesNotExist(graph string) Message

CypherGraphProceduresGraphDoesNotExist identifies a missing projected graph.

func CypherGraphProceduresGraphDoesNotExistProjectFirst

func CypherGraphProceduresGraphDoesNotExistProjectFirst(graph string) Message

CypherGraphProceduresGraphDoesNotExistProjectFirst identifies a missing FastRP graph projection.

func CypherGraphProceduresGraphNameRequired

func CypherGraphProceduresGraphNameRequired(procedure string) Message

CypherGraphProceduresGraphNameRequired identifies a missing GDS graph name.

func CypherGraphProceduresInvalidProcedureCallSyntax

func CypherGraphProceduresInvalidProcedureCallSyntax() Message

CypherGraphProceduresInvalidProcedureCallSyntax identifies malformed link-prediction call syntax.

func CypherGraphProceduresSourceNodeRequired

func CypherGraphProceduresSourceNodeRequired() Message

CypherGraphProceduresSourceNodeRequired identifies a missing link-prediction sourceNode parameter.

func CypherGraphProceduresStreamEdgesFailed

func CypherGraphProceduresStreamEdgesFailed(cause error) Message

CypherGraphProceduresStreamEdgesFailed identifies a wrapped projection edge-stream failure.

func CypherGraphProceduresStreamNodesFailed

func CypherGraphProceduresStreamNodesFailed(cause error) Message

CypherGraphProceduresStreamNodesFailed identifies a wrapped projection node-stream failure.

func CypherGraphProceduresVariableNotFound

func CypherGraphProceduresVariableNotFound(variable string) Message

CypherGraphProceduresVariableNotFound identifies an unresolved id(variable) expression.

func CypherInvariantsDeleteByPrefixTransactionUnsupported

func CypherInvariantsDeleteByPrefixTransactionUnsupported() Message

CypherInvariantsDeleteByPrefixTransactionUnsupported identifies an unsupported transactional bulk deletion.

func CypherInvariantsPipelineCreateFailed

func CypherInvariantsPipelineCreateFailed(cause error) Message

CypherInvariantsPipelineCreateFailed identifies a CREATE failure in the pipeline executor.

func CypherKnowledgePolicyArgumentStringRequired

func CypherKnowledgePolicyArgumentStringRequired(position int) Message

CypherKnowledgePolicyArgumentStringRequired identifies a non-string procedure argument.

func CypherKnowledgePolicyBindingTableUnavailable

func CypherKnowledgePolicyBindingTableUnavailable() Message

CypherKnowledgePolicyBindingTableUnavailable identifies unavailable compiled policy bindings.

func CypherKnowledgePolicyDecayOptionsMapRequired

func CypherKnowledgePolicyDecayOptionsMapRequired(valueType string) Message

CypherKnowledgePolicyDecayOptionsMapRequired identifies a non-map decay options argument.

func CypherKnowledgePolicyDeindexBadgerRequired

func CypherKnowledgePolicyDeindexBadgerRequired() Message

CypherKnowledgePolicyDeindexBadgerRequired identifies unsupported deindex status storage.

func CypherKnowledgePolicyEdgePatternExpectedFor

func CypherKnowledgePolicyEdgePatternExpectedFor(expected string) Message

CypherKnowledgePolicyEdgePatternExpectedFor identifies a missing opening edge-pattern symbol.

func CypherKnowledgePolicyEdgePatternExpectedIn

func CypherKnowledgePolicyEdgePatternExpectedIn(expected string) Message

CypherKnowledgePolicyEdgePatternExpectedIn identifies a missing edge-pattern symbol.

func CypherKnowledgePolicyEdgeTypeExpectedAfterColon

func CypherKnowledgePolicyEdgeTypeExpectedAfterColon() Message

CypherKnowledgePolicyEdgeTypeExpectedAfterColon identifies a missing edge type.

func CypherKnowledgePolicyEntityNotFound

func CypherKnowledgePolicyEntityNotFound(entityID string) Message

CypherKnowledgePolicyEntityNotFound identifies an unknown entity ID.

func CypherKnowledgePolicyExpectedAfter

func CypherKnowledgePolicyExpectedAfter(expected, after string) Message

CypherKnowledgePolicyExpectedAfter identifies a missing parser term after Cypher syntax.

func CypherKnowledgePolicyExpectedAfterProfileName

func CypherKnowledgePolicyExpectedAfterProfileName(expected, profileName string) Message

CypherKnowledgePolicyExpectedAfterProfileName identifies missing syntax after a profile name.

func CypherKnowledgePolicyExpressionExpectedAfterSet

func CypherKnowledgePolicyExpressionExpectedAfterSet() Message

CypherKnowledgePolicyExpressionExpectedAfterSet identifies a missing SET expression.

func CypherKnowledgePolicyInvalidValue

func CypherKnowledgePolicyInvalidValue(field, value string, quoted bool) Message

CypherKnowledgePolicyInvalidValue identifies an invalid configuration value.

func CypherKnowledgePolicyKalmanClosingBraceExpected

func CypherKnowledgePolicyKalmanClosingBraceExpected() Message

CypherKnowledgePolicyKalmanClosingBraceExpected identifies an unterminated Kalman block.

func CypherKnowledgePolicyLabelExpectedAfterColon

func CypherKnowledgePolicyLabelExpectedAfterColon() Message

CypherKnowledgePolicyLabelExpectedAfterColon identifies a missing node label.

func CypherKnowledgePolicyNumberExpectedAfter

func CypherKnowledgePolicyNumberExpectedAfter(after string) Message

CypherKnowledgePolicyNumberExpectedAfter identifies a missing numeric value.

func CypherKnowledgePolicyOperationFailed

func CypherKnowledgePolicyOperationFailed(operation string, cause error) Message

CypherKnowledgePolicyOperationFailed gives a schema operation typed identity without changing its text.

func CypherKnowledgePolicyPolicyNameExpectedAfter

func CypherKnowledgePolicyPolicyNameExpectedAfter(after string) Message

CypherKnowledgePolicyPolicyNameExpectedAfter identifies a missing policy name.

func CypherKnowledgePolicyProfileNameExpectedAfter

func CypherKnowledgePolicyProfileNameExpectedAfter(after string) Message

CypherKnowledgePolicyProfileNameExpectedAfter identifies a missing profile name.

func CypherKnowledgePolicyReasonDecayDisabled

func CypherKnowledgePolicyReasonDecayDisabled() Message

func CypherKnowledgePolicyReasonEntityNotFound

func CypherKnowledgePolicyReasonEntityNotFound() Message

func CypherKnowledgePolicyReasonNoBadgerEngine

func CypherKnowledgePolicyReasonNoBadgerEngine() Message

func CypherKnowledgePolicyReasonNoDecay

func CypherKnowledgePolicyReasonNoDecay() Message

func CypherKnowledgePolicyReasonNoDecayProfile

func CypherKnowledgePolicyReasonNoDecayProfile() Message

func CypherKnowledgePolicyReasonNoEntityArgument

func CypherKnowledgePolicyReasonNoEntityArgument() Message

func CypherKnowledgePolicyResolveTargetRequired

func CypherKnowledgePolicyResolveTargetRequired() Message

CypherKnowledgePolicyResolveTargetRequired identifies a resolve call without a target selector.

func CypherKnowledgePolicySchemaManagerUnavailable

func CypherKnowledgePolicySchemaManagerUnavailable() Message

CypherKnowledgePolicySchemaManagerUnavailable identifies unavailable schema support.

func CypherKnowledgePolicySecondsExpectedAfter

func CypherKnowledgePolicySecondsExpectedAfter(after string) Message

CypherKnowledgePolicySecondsExpectedAfter identifies a missing duration value.

func CypherKnowledgePolicyUnknownDecayOption

func CypherKnowledgePolicyUnknownDecayOption(option string) Message

CypherKnowledgePolicyUnknownDecayOption identifies an unsupported decay function option.

func CypherKnowledgePolicyUnknownKalmanConfigKey

func CypherKnowledgePolicyUnknownKalmanConfigKey(key string) Message

CypherKnowledgePolicyUnknownKalmanConfigKey identifies an unsupported Kalman option.

func CypherKnowledgePolicyUnknownOption

func CypherKnowledgePolicyUnknownOption(option string) Message

CypherKnowledgePolicyUnknownOption identifies an unsupported profile option.

func CypherKnowledgePolicyUnsupportedCommand

func CypherKnowledgePolicyUnsupportedCommand(command string) Message

CypherKnowledgePolicyUnsupportedCommand identifies Cypher that is not knowledge-policy DDL.

func CypherKnowledgePolicyUnsupportedCommandType

func CypherKnowledgePolicyUnsupportedCommandType(commandType string) Message

CypherKnowledgePolicyUnsupportedCommandType identifies an unexpected parsed command type.

func CypherLogCreateDatabaseFailed

func CypherLogCreateDatabaseFailed() Message

CypherLogCreateDatabaseFailed describes a failed CREATE DATABASE operation.

func CypherLogCreateDatabaseInvoked

func CypherLogCreateDatabaseInvoked() Message

CypherLogCreateDatabaseInvoked describes entry into CREATE DATABASE execution.

func CypherLogCreateDatabaseSucceeded

func CypherLogCreateDatabaseSucceeded() Message

CypherLogCreateDatabaseSucceeded describes a successful CREATE DATABASE operation.

func CypherLogDecaySubsystemDisabled

func CypherLogDecaySubsystemDisabled() Message

CypherLogDecaySubsystemDisabled describes decay evaluation while decay is disabled.

func CypherLogOrphanedEmbeddingDetected

func CypherLogOrphanedEmbeddingDetected() Message

CypherLogOrphanedEmbeddingDetected describes an embedding whose node no longer exists.

func CypherLogOrphanedEmbeddingRemovalFailed

func CypherLogOrphanedEmbeddingRemovalFailed() Message

CypherLogOrphanedEmbeddingRemovalFailed describes failure to remove an orphaned embedding.

func CypherLogSlowQuery

func CypherLogSlowQuery() Message

CypherLogSlowQuery describes a slow-query log message.

func CypherLogVectorSearchDisabled

func CypherLogVectorSearchDisabled() Message

CypherLogVectorSearchDisabled describes a vector query against a disabled database.

func CypherMatchingAggregateCallExpected

func CypherMatchingAggregateCallExpected(expression string) Message

func CypherMatchingCollectSubqueryFailed

func CypherMatchingCollectSubqueryFailed(cause error) Message

func CypherMatchingFunctionParametersInsufficient

func CypherMatchingFunctionParametersInsufficient(function string) Message

func CypherMatchingInitialTraversalMatchFailed

func CypherMatchingInitialTraversalMatchFailed(cause error) Message

func CypherMatchingLimitParseFailed

func CypherMatchingLimitParseFailed() Message

func CypherMatchingMatchNodePatternRequired

func CypherMatchingMatchNodePatternRequired() Message

func CypherMatchingMatchPatternRequired

func CypherMatchingMatchPatternRequired() Message

func CypherMatchingMatchPatternVariableMissing

func CypherMatchingMatchPatternVariableMissing(clause string) Message

func CypherMatchingMatchUnwindClausesRequired

func CypherMatchingMatchUnwindClausesRequired() Message

func CypherMatchingOptionalMatchNodeEndpointMissing

func CypherMatchingOptionalMatchNodeEndpointMissing(pattern string) Message

func CypherMatchingOptionalMatchNodeEndpointUnterminated

func CypherMatchingOptionalMatchNodeEndpointUnterminated(pattern string) Message

func CypherMatchingOptionalMatchTargetEndpointMissing

func CypherMatchingOptionalMatchTargetEndpointMissing(pattern string) Message

func CypherMatchingOptionalMatchTargetEndpointUnterminated

func CypherMatchingOptionalMatchTargetEndpointUnterminated(pattern string) Message

func CypherMatchingOrderByParseFailed

func CypherMatchingOrderByParseFailed() Message

func CypherMatchingPathPatternInvalid

func CypherMatchingPathPatternInvalid(pattern string) Message

func CypherMatchingReturnAfterWithRequired

func CypherMatchingReturnAfterWithRequired() Message

func CypherMatchingReturnExpressionEmpty

func CypherMatchingReturnExpressionEmpty() Message

func CypherMatchingReturnExpressionRequired

func CypherMatchingReturnExpressionRequired() Message

func CypherMatchingShortestPathEndVariableUnresolved

func CypherMatchingShortestPathEndVariableUnresolved(variable string) Message

func CypherMatchingShortestPathQueryExpected

func CypherMatchingShortestPathQueryExpected() Message

func CypherMatchingShortestPathStartVariableUnresolved

func CypherMatchingShortestPathStartVariableUnresolved(variable string) Message

func CypherMatchingShortestPathSyntaxInvalid

func CypherMatchingShortestPathSyntaxInvalid() Message

func CypherMatchingSkipParseFailed

func CypherMatchingSkipParseFailed() Message

func CypherMatchingStorageFailed

func CypherMatchingStorageFailed(cause error) Message

func CypherMatchingTraversalPatternInvalid

func CypherMatchingTraversalPatternInvalid(pattern string) Message

func CypherMatchingUnwindASRequired

func CypherMatchingUnwindASRequired() Message

func CypherMatchingWithOptionalMatchReturnClausesRequired

func CypherMatchingWithOptionalMatchReturnClausesRequired() Message

func CypherMatchingWithReturnClausesRequired

func CypherMatchingWithReturnClausesRequired() Message

func CypherMergeBulkCreateEdgesFailed

func CypherMergeBulkCreateEdgesFailed(cause error) Message

func CypherMergeBulkCreateNodesFailed

func CypherMergeBulkCreateNodesFailed(cause error) Message

func CypherMergeClauseNotFound

func CypherMergeClauseNotFound(query string) Message

func CypherMergeCreateEdgeEndNotBound

func CypherMergeCreateEdgeEndNotBound(variable string) Message

func CypherMergeCreateEdgeFailed

func CypherMergeCreateEdgeFailed(cause error) Message

func CypherMergeCreateEdgeStartNotBound

func CypherMergeCreateEdgeStartNotBound(variable string) Message

func CypherMergeCreateNodeFailed

func CypherMergeCreateNodeFailed(cause error) Message

func CypherMergeCreateNodeSegmentFailed

func CypherMergeCreateNodeSegmentFailed(cause error) Message

func CypherMergeCreateNodeVariableRequired

func CypherMergeCreateNodeVariableRequired() Message

func CypherMergeCreateRelationshipFailed

func CypherMergeCreateRelationshipFailed(cause error) Message

func CypherMergeEndVariableNotBound

func CypherMergeEndVariableNotBound(variable string, available any) Message

func CypherMergeFindRelationshipFailed

func CypherMergeFindRelationshipFailed(cause error) Message

func CypherMergeFindRelationshipSegmentFailed

func CypherMergeFindRelationshipSegmentFailed(cause error) Message

func CypherMergeForeachFailed

func CypherMergeForeachFailed(cause error) Message

func CypherMergeGetEdgesBetweenFailed

func CypherMergeGetEdgesBetweenFailed(startID, endID string, cause error) Message

func CypherMergeGetNodesByLabelFailed

func CypherMergeGetNodesByLabelFailed(label string, cause error) Message

func CypherMergeInitialMergeFailed

func CypherMergeInitialMergeFailed(cause error) Message

func CypherMergeInlineNodeCreateFailed

func CypherMergeInlineNodeCreateFailed(cause error) Message

func CypherMergeInvalidLabelName

func CypherMergeInvalidLabelName(label string) Message

func CypherMergeInvalidMatchQuery

func CypherMergeInvalidMatchQuery() Message

func CypherMergeInvalidPropertyKey

func CypherMergeInvalidPropertyKey(property string) Message

func CypherMergeInvalidPropertyValue

func CypherMergeInvalidPropertyValue(property string) Message

func CypherMergeMalformedRelationshipPattern

func CypherMergeMalformedRelationshipPattern(pattern string) Message

func CypherMergeMapEntryEmpty

func CypherMergeMapEntryEmpty() Message

func CypherMergeMapEntryInvalid

func CypherMergeMapEntryInvalid(entry string) Message

func CypherMergeMapKeyEmpty

func CypherMergeMapKeyEmpty() Message

func CypherMergeMapLiteralEnclosureRequired

func CypherMergeMapLiteralEnclosureRequired() Message

func CypherMergeMapValueEmpty

func CypherMergeMapValueEmpty(key string) Message

func CypherMergeMatchAllNodesFailed

func CypherMergeMatchAllNodesFailed(cause error) Message

func CypherMergeMatchExecutionFailed

func CypherMergeMatchExecutionFailed(cause error) Message

func CypherMergeMatchFailed

func CypherMergeMatchFailed(cause error) Message

func CypherMergeMatchLabelLookupFailed

func CypherMergeMatchLabelLookupFailed(label string, cause error) Message

func CypherMergeMatchPatternVariableRequired

func CypherMergeMatchPatternVariableRequired() Message

func CypherMergeMatchSegmentClauseNotFound

func CypherMergeMatchSegmentClauseNotFound() Message

func CypherMergeNodeFailed

func CypherMergeNodeFailed(cause error) Message

func CypherMergeNodePatternParseFailed

func CypherMergeNodePatternParseFailed(pattern string) Message

func CypherMergeOptionalMatchFailed

func CypherMergeOptionalMatchFailed(cause error) Message

func CypherMergePipelineCreateNodeFailed

func CypherMergePipelineCreateNodeFailed(cause error) Message

func CypherMergePipelineWithRequired

func CypherMergePipelineWithRequired() Message

func CypherMergeRelationshipBracketsMissing

func CypherMergeRelationshipBracketsMissing(pattern string) Message

func CypherMergeRelationshipCreateCollisions

func CypherMergeRelationshipCreateCollisions(attempts int) Message

func CypherMergeRelationshipEndMissing

func CypherMergeRelationshipEndMissing(pattern string) Message

func CypherMergeRelationshipEndpointsNotBound

func CypherMergeRelationshipEndpointsNotBound(startVariable, endVariable string) Message

func CypherMergeRelationshipFailed

func CypherMergeRelationshipFailed(cause error) Message

func CypherMergeRelationshipIdentityExhausted

func CypherMergeRelationshipIdentityExhausted() Message

func CypherMergeRelationshipPatternParseFailed

func CypherMergeRelationshipPatternParseFailed(cause error) Message

func CypherMergeRelationshipStartMissing

func CypherMergeRelationshipStartMissing(pattern string) Message

func CypherMergeRelationshipStartParenMissing

func CypherMergeRelationshipStartParenMissing(pattern string) Message

func CypherMergeRelationshipTypeRequired

func CypherMergeRelationshipTypeRequired() Message

func CypherMergeSegmentClauseNotFound

func CypherMergeSegmentClauseNotFound() Message

func CypherMergeSelectRelationshipIdentityFailed

func CypherMergeSelectRelationshipIdentityFailed(cause error) Message

func CypherMergeSourceNodeIDEmpty

func CypherMergeSourceNodeIDEmpty(variable string) Message

func CypherMergeSourceResolutionFailed

func CypherMergeSourceResolutionFailed(variable string, cause error) Message

func CypherMergeStartVariableNotBound

func CypherMergeStartVariableNotBound(variable string, available any) Message

func CypherMergeTargetNodeIDEmpty

func CypherMergeTargetNodeIDEmpty(variable string) Message

func CypherMergeTargetResolutionFailed

func CypherMergeTargetResolutionFailed(variable string, cause error) Message

func CypherMergeUnknownFunction

func CypherMergeUnknownFunction(function string) Message

func CypherMergeUnwindASRequired

func CypherMergeUnwindASRequired() Message

func CypherMergeUnwindParameterNotFound

func CypherMergeUnwindParameterNotFound(parameter string) Message

func CypherMergeUpdateEdgeFailed

func CypherMergeUpdateEdgeFailed(cause error) Message

func CypherMergeUpdateEdgePropertyFailed

func CypherMergeUpdateEdgePropertyFailed(cause error) Message

func CypherMergeVariableNotFound

func CypherMergeVariableNotFound(content string) Message

func CypherMutationsAddLabelFailed

func CypherMutationsAddLabelFailed(cause error) Message

CypherMutationsAddLabelFailed identifies a wrapped label update failure.

func CypherMutationsCreateFailed

func CypherMutationsCreateFailed(cause error) Message

CypherMutationsCreateFailed identifies a wrapped CREATE pipeline failure.

func CypherMutationsCreateInCreateSetFailed

func CypherMutationsCreateInCreateSetFailed(cause error) Message

CypherMutationsCreateInCreateSetFailed identifies a wrapped CREATE/SET failure.

func CypherMutationsCreateNodeFailed

func CypherMutationsCreateNodeFailed(cause error) Message

CypherMutationsCreateNodeFailed identifies a wrapped node creation failure.

func CypherMutationsCreateRelationshipFailed

func CypherMutationsCreateRelationshipFailed(cause error) Message

CypherMutationsCreateRelationshipFailed identifies a wrapped relationship creation failure.

func CypherMutationsCreateSetClauseMissing

func CypherMutationsCreateSetClauseMissing() Message

CypherMutationsCreateSetClauseMissing identifies a missing SET clause.

func CypherMutationsCreateSetTrailingClauseUnsupported

func CypherMutationsCreateSetTrailingClauseUnsupported(clause string) Message

CypherMutationsCreateSetTrailingClauseUnsupported identifies an unsupported post-SET clause.

func CypherMutationsCreateSetWithContinuationRequired

func CypherMutationsCreateSetWithContinuationRequired() Message

CypherMutationsCreateSetWithContinuationRequired identifies a terminal WITH in CREATE/SET.

func CypherMutationsCreateSourceNodeFailed

func CypherMutationsCreateSourceNodeFailed(cause error) Message

CypherMutationsCreateSourceNodeFailed identifies a wrapped source-node creation failure.

func CypherMutationsCreateTargetNodeFailed

func CypherMutationsCreateTargetNodeFailed(cause error) Message

CypherMutationsCreateTargetNodeFailed identifies a wrapped target-node creation failure.

func CypherMutationsCreateWithDeleteInvalid

func CypherMutationsCreateWithDeleteInvalid() Message

CypherMutationsCreateWithDeleteInvalid identifies an invalid CREATE/WITH/DELETE pipeline.

func CypherMutationsDeleteFailed

func CypherMutationsDeleteFailed(cause error) Message

CypherMutationsDeleteFailed identifies a wrapped DELETE pipeline failure.

func CypherMutationsDeleteMatchRequired

func CypherMutationsDeleteMatchRequired() Message

CypherMutationsDeleteMatchRequired identifies DELETE without MATCH.

func CypherMutationsDeleteVariablesRequired

func CypherMutationsDeleteVariablesRequired() Message

CypherMutationsDeleteVariablesRequired identifies DELETE without a target.

func CypherMutationsDetachDeleteKeywordsRequired

func CypherMutationsDetachDeleteKeywordsRequired() Message

CypherMutationsDetachDeleteKeywordsRequired identifies incomplete DETACH DELETE syntax.

func CypherMutationsForeachBalancedParenthesesRequired

func CypherMutationsForeachBalancedParenthesesRequired() Message

CypherMutationsForeachBalancedParenthesesRequired identifies unbalanced FOREACH parentheses.

func CypherMutationsForeachInRequired

func CypherMutationsForeachInRequired() Message

CypherMutationsForeachInRequired identifies FOREACH without IN.

func CypherMutationsForeachParenthesesRequired

func CypherMutationsForeachParenthesesRequired() Message

CypherMutationsForeachParenthesesRequired identifies FOREACH without parentheses.

func CypherMutationsForeachSeparatorRequired

func CypherMutationsForeachSeparatorRequired() Message

CypherMutationsForeachSeparatorRequired identifies FOREACH without its update separator.

func CypherMutationsInvalidLabelName

func CypherMutationsInvalidLabelName(label string) Message

CypherMutationsInvalidLabelName identifies an invalid CREATE or SET label.

func CypherMutationsInvalidLabelReserved

func CypherMutationsInvalidLabelReserved(label string) Message

CypherMutationsInvalidLabelReserved identifies a reserved label identifier.

func CypherMutationsInvalidPropertyKey

func CypherMutationsInvalidPropertyKey(property string) Message

CypherMutationsInvalidPropertyKey identifies an invalid node property key.

func CypherMutationsInvalidPropertyMapCause

func CypherMutationsInvalidPropertyMapCause(cause error) Message

CypherMutationsInvalidPropertyMapCause identifies malformed CREATE property syntax.

func CypherMutationsInvalidPropertyValue

func CypherMutationsInvalidPropertyValue(property string) Message

CypherMutationsInvalidPropertyValue identifies malformed property syntax.

func CypherMutationsInvalidRelationshipPropertyKey

func CypherMutationsInvalidRelationshipPropertyKey(property string) Message

CypherMutationsInvalidRelationshipPropertyKey identifies an invalid relationship property key.

func CypherMutationsInvalidRelationshipType

func CypherMutationsInvalidRelationshipType(relationshipType string) Message

CypherMutationsInvalidRelationshipType identifies an invalid relationship type.

func CypherMutationsMatchAllNodesFailed

func CypherMutationsMatchAllNodesFailed(cause error) Message

CypherMutationsMatchAllNodesFailed identifies a failed MATCH node scan.

func CypherMutationsMatchLabelLookupFailed

func CypherMutationsMatchLabelLookupFailed(label string, cause error) Message

CypherMutationsMatchLabelLookupFailed identifies a failed MATCH label lookup.

func CypherMutationsNodeCreateFailed

func CypherMutationsNodeCreateFailed(cause error) Message

CypherMutationsNodeCreateFailed identifies a wrapped node CREATE segment failure.

func CypherMutationsRelationshipCreateFailed

func CypherMutationsRelationshipCreateFailed(cause error) Message

CypherMutationsRelationshipCreateFailed identifies a wrapped relationship CREATE segment failure.

func CypherMutationsRelationshipExistenceCheckFailed

func CypherMutationsRelationshipExistenceCheckFailed(startVariable, relationshipType, endVariable string, cause error) Message

CypherMutationsRelationshipExistenceCheckFailed identifies a failed relationship lookup.

func CypherMutationsRelationshipPatternArrowExpected

func CypherMutationsRelationshipPatternArrowExpected() Message

CypherMutationsRelationshipPatternArrowExpected identifies a missing arrow target node.

func CypherMutationsRelationshipPatternForwardExpected

func CypherMutationsRelationshipPatternForwardExpected() Message

CypherMutationsRelationshipPatternForwardExpected identifies a missing forward target node.

func CypherMutationsRelationshipPatternMustStartNode

func CypherMutationsRelationshipPatternMustStartNode() Message

CypherMutationsRelationshipPatternMustStartNode identifies a missing initial node pattern.

func CypherMutationsRelationshipPatternSecondUnmatched

func CypherMutationsRelationshipPatternSecondUnmatched() Message

CypherMutationsRelationshipPatternSecondUnmatched identifies an unmatched target-node parenthesis.

func CypherMutationsRelationshipPatternUnmatchedBracket

func CypherMutationsRelationshipPatternUnmatchedBracket() Message

CypherMutationsRelationshipPatternUnmatchedBracket identifies an unmatched relationship bracket.

func CypherMutationsRelationshipPatternUnmatchedParen

func CypherMutationsRelationshipPatternUnmatchedParen() Message

CypherMutationsRelationshipPatternUnmatchedParen identifies an unmatched first node parenthesis.

func CypherMutationsRelationshipPropertiesInvalid

func CypherMutationsRelationshipPropertiesInvalid() Message

CypherMutationsRelationshipPropertiesInvalid identifies malformed relationship properties.

func CypherMutationsRemoveMatchRequired

func CypherMutationsRemoveMatchRequired() Message

CypherMutationsRemoveMatchRequired identifies REMOVE without MATCH.

func CypherMutationsReplaceEdgePropertiesFailed

func CypherMutationsReplaceEdgePropertiesFailed(cause error) Message

CypherMutationsReplaceEdgePropertiesFailed identifies a wrapped relationship map replacement failure.

func CypherMutationsReplaceNodePropertiesFailed

func CypherMutationsReplaceNodePropertiesFailed(cause error) Message

CypherMutationsReplaceNodePropertiesFailed identifies a wrapped node map replacement failure.

func CypherMutationsResolveSourceNodeFailed

func CypherMutationsResolveSourceNodeFailed(cause error) Message

CypherMutationsResolveSourceNodeFailed identifies a wrapped source resolution failure.

func CypherMutationsResolveTargetNodeFailed

func CypherMutationsResolveTargetNodeFailed(cause error) Message

CypherMutationsResolveTargetNodeFailed identifies a wrapped target resolution failure.

func CypherMutationsSetAssignmentParameterNameRequired

func CypherMutationsSetAssignmentParameterNameRequired() Message

CypherMutationsSetAssignmentParameterNameRequired identifies an empty SET parameter name.

func CypherMutationsSetAssignmentParameterNotFound

func CypherMutationsSetAssignmentParameterNotFound(parameter string) Message

CypherMutationsSetAssignmentParameterNotFound identifies an unknown SET parameter.

func CypherMutationsSetAssignmentParametersRequired

func CypherMutationsSetAssignmentParametersRequired(parameter string) Message

CypherMutationsSetAssignmentParametersRequired identifies missing SET parameters.

func CypherMutationsSetAssignmentRequired

func CypherMutationsSetAssignmentRequired() Message

CypherMutationsSetAssignmentRequired identifies SET without assignments.

func CypherMutationsSetEntityReplaceFailed

func CypherMutationsSetEntityReplaceFailed(variable string, cause error) Message

CypherMutationsSetEntityReplaceFailed identifies a wrapped SET variable map replacement.

func CypherMutationsSetEntityRequired

func CypherMutationsSetEntityRequired(variable string) Message

CypherMutationsSetEntityRequired identifies SET map replacement on a scalar.

func CypherMutationsSetMatchRequired

func CypherMutationsSetMatchRequired() Message

CypherMutationsSetMatchRequired identifies SET without MATCH.

func CypherMutationsSetMergeMapLiteralRequired

func CypherMutationsSetMergeMapLiteralRequired() Message

CypherMutationsSetMergeMapLiteralRequired identifies a non-map SET += literal.

func CypherMutationsSetMergeMapRequired

func CypherMutationsSetMergeMapRequired(source, valueType string) Message

CypherMutationsSetMergeMapRequired identifies a non-map SET += source.

func CypherMutationsSetMergeMapScopeRequired

func CypherMutationsSetMergeMapScopeRequired(variable string) Message

CypherMutationsSetMergeMapScopeRequired identifies a missing row-scope map.

func CypherMutationsSetMergeMapVariableNotFound

func CypherMutationsSetMergeMapVariableNotFound(variable string) Message

CypherMutationsSetMergeMapVariableNotFound identifies a missing SET += map variable.

func CypherMutationsSetMergeOperatorExpected

func CypherMutationsSetMergeOperatorExpected() Message

CypherMutationsSetMergeOperatorExpected identifies a missing += operator.

func CypherMutationsSetMergeParameterNameRequired

func CypherMutationsSetMergeParameterNameRequired() Message

CypherMutationsSetMergeParameterNameRequired identifies an empty SET += parameter name.

func CypherMutationsSetMergeParameterNotFound

func CypherMutationsSetMergeParameterNotFound(parameter string) Message

CypherMutationsSetMergeParameterNotFound identifies an unknown SET += parameter.

func CypherMutationsSetMergeParametersRequired

func CypherMutationsSetMergeParametersRequired(parameter string) Message

CypherMutationsSetMergeParametersRequired identifies missing SET += parameters.

func CypherMutationsSetMergeParseFailed

func CypherMutationsSetMergeParseFailed(cause error) Message

CypherMutationsSetMergeParseFailed identifies a wrapped SET += map parse failure.

func CypherMutationsSetMergeStringKeysRequired

func CypherMutationsSetMergeStringKeysRequired(source, keyType string) Message

CypherMutationsSetMergeStringKeysRequired identifies a non-string SET += map key.

func CypherMutationsSetMergeSyntaxInvalid

func CypherMutationsSetMergeSyntaxInvalid() Message

CypherMutationsSetMergeSyntaxInvalid identifies malformed SET += syntax.

func CypherMutationsSetMergeUpdateFailed

func CypherMutationsSetMergeUpdateFailed(variable string, cause error) Message

CypherMutationsSetMergeUpdateFailed identifies a wrapped SET += entity update.

func CypherMutationsSetMergeVariableRequired

func CypherMutationsSetMergeVariableRequired() Message

CypherMutationsSetMergeVariableRequired identifies SET += without a target.

func CypherMutationsSetPropertyEntityRequired

func CypherMutationsSetPropertyEntityRequired(variable, property string) Message

CypherMutationsSetPropertyEntityRequired identifies SET property on a scalar.

func CypherMutationsSetPropertyFailed

func CypherMutationsSetPropertyFailed(variable, property string, cause error) Message

CypherMutationsSetPropertyFailed identifies a wrapped SET property update.

func CypherMutationsUnknownSetMergeVariable

func CypherMutationsUnknownSetMergeVariable(variable string) Message

CypherMutationsUnknownSetMergeVariable identifies an unknown SET += variable.

func CypherMutationsUnknownSetVariable

func CypherMutationsUnknownSetVariable(variable string) Message

CypherMutationsUnknownSetVariable identifies an unknown SET variable.

func CypherMutationsUnwindASRequired

func CypherMutationsUnwindASRequired() Message

CypherMutationsUnwindASRequired identifies UNWIND without AS.

func CypherMutationsUnwindASVariableNonEmpty

func CypherMutationsUnwindASVariableNonEmpty() Message

CypherMutationsUnwindASVariableNonEmpty identifies an empty AS variable.

func CypherMutationsUnwindClauseExpected

func CypherMutationsUnwindClauseExpected() Message

CypherMutationsUnwindClauseExpected identifies a missing trailing UNWIND clause.

func CypherMutationsUnwindClauseMissing

func CypherMutationsUnwindClauseMissing() Message

CypherMutationsUnwindClauseMissing identifies a missing UNWIND clause.

func CypherMutationsUnwindDoubleMalformed

func CypherMutationsUnwindDoubleMalformed() Message

CypherMutationsUnwindDoubleMalformed identifies malformed double UNWIND syntax.

func CypherMutationsUnwindFirstASRequired

func CypherMutationsUnwindFirstASRequired() Message

CypherMutationsUnwindFirstASRequired identifies a first UNWIND without AS.

func CypherMutationsUnwindFixedChainFailed

func CypherMutationsUnwindFixedChainFailed(cause error) Message

CypherMutationsUnwindFixedChainFailed identifies a wrapped fixed-chain merge failure.

func CypherMutationsUnwindKeysUnsupported

func CypherMutationsUnwindKeysUnsupported() Message

CypherMutationsUnwindKeysUnsupported identifies unsupported keys() use with UNWIND.

func CypherMutationsUnwindMatchFailed

func CypherMutationsUnwindMatchFailed(cause error) Message

CypherMutationsUnwindMatchFailed identifies a wrapped UNWIND MATCH failure.

func CypherMutationsUnwindMatchUpdateFailed

func CypherMutationsUnwindMatchUpdateFailed(cause error) Message

CypherMutationsUnwindMatchUpdateFailed identifies a wrapped UNWIND MATCH update failure.

func CypherMutationsUnwindMergeCreateFailed

func CypherMutationsUnwindMergeCreateFailed(cause error) Message

CypherMutationsUnwindMergeCreateFailed identifies a wrapped UNWIND MERGE node create failure.

func CypherMutationsUnwindMergeUpdateFailed

func CypherMutationsUnwindMergeUpdateFailed(cause error) Message

CypherMutationsUnwindMergeUpdateFailed identifies a wrapped UNWIND MERGE node update failure.

func CypherMutationsUnwindMutationFailed

func CypherMutationsUnwindMutationFailed(cause error) Message

CypherMutationsUnwindMutationFailed identifies a wrapped UNWIND mutation failure.

func CypherMutationsUnwindParameterNameRequired

func CypherMutationsUnwindParameterNameRequired() Message

CypherMutationsUnwindParameterNameRequired identifies an empty UNWIND parameter name.

func CypherMutationsUnwindParameterNotFound

func CypherMutationsUnwindParameterNotFound(parameter string) Message

CypherMutationsUnwindParameterNotFound identifies an unknown UNWIND parameter.

func CypherMutationsUnwindParametersRequired

func CypherMutationsUnwindParametersRequired(parameter string) Message

CypherMutationsUnwindParametersRequired identifies missing UNWIND parameters.

func CypherMutationsUnwindRelationshipAssignmentFailed

func CypherMutationsUnwindRelationshipAssignmentFailed(cause error) Message

CypherMutationsUnwindRelationshipAssignmentFailed identifies a wrapped relationship assignment failure.

func CypherMutationsUnwindRelationshipCreateFailed

func CypherMutationsUnwindRelationshipCreateFailed(cause error) Message

CypherMutationsUnwindRelationshipCreateFailed identifies a wrapped relationship creation failure.

func CypherMutationsUnwindRelationshipLookupFailed

func CypherMutationsUnwindRelationshipLookupFailed(cause error) Message

CypherMutationsUnwindRelationshipLookupFailed identifies a wrapped relationship lookup failure.

func CypherMutationsUnwindRelationshipUpdateFailed

func CypherMutationsUnwindRelationshipUpdateFailed(cause error) Message

CypherMutationsUnwindRelationshipUpdateFailed identifies a wrapped relationship update failure.

func CypherMutationsUnwindSecondASRequired

func CypherMutationsUnwindSecondASRequired() Message

CypherMutationsUnwindSecondASRequired identifies a second UNWIND without AS.

func CypherMutationsUnwindSecondExpected

func CypherMutationsUnwindSecondExpected() Message

CypherMutationsUnwindSecondExpected identifies a missing second UNWIND.

func CypherMutationsUnwindSetReturnRequired

func CypherMutationsUnwindSetReturnRequired() Message

CypherMutationsUnwindSetReturnRequired identifies SET/UNWIND without RETURN.

func CypherMutationsUnwindVariableRequired

func CypherMutationsUnwindVariableRequired() Message

CypherMutationsUnwindVariableRequired identifies a missing variable after AS.

func CypherMutationsUpdateEdgeFailed

func CypherMutationsUpdateEdgeFailed(cause error) Message

CypherMutationsUpdateEdgeFailed identifies a wrapped relationship update failure.

func CypherMutationsUpdateEdgePropertyFailed

func CypherMutationsUpdateEdgePropertyFailed(cause error) Message

CypherMutationsUpdateEdgePropertyFailed identifies a wrapped relationship property update failure.

func CypherMutationsUpdateNodeFailed

func CypherMutationsUpdateNodeFailed(cause error) Message

CypherMutationsUpdateNodeFailed identifies a wrapped node update failure.

func CypherMutationsUpdateNodePropertyFailed

func CypherMutationsUpdateNodePropertyFailed(cause error) Message

CypherMutationsUpdateNodePropertyFailed identifies a wrapped node property update failure.

func CypherMutationsVariableNotFound

func CypherMutationsVariableNotFound(variable, available string) Message

CypherMutationsVariableNotFound identifies an unresolved CREATE variable.

func CypherMutationsWithClauseEmpty

func CypherMutationsWithClauseEmpty() Message

CypherMutationsWithClauseEmpty identifies an empty WITH projection.

func CypherMutationsWithExpressionRequired

func CypherMutationsWithExpressionRequired() Message

CypherMutationsWithExpressionRequired identifies WITH without projection expressions.

func CypherMutationsWithOptionalReturnRequired

func CypherMutationsWithOptionalReturnRequired() Message

CypherMutationsWithOptionalReturnRequired identifies an incomplete WITH/OPTIONAL MATCH pipeline.

func CypherMutationsWithReturnRequired

func CypherMutationsWithReturnRequired() Message

CypherMutationsWithReturnRequired identifies WITH aggregation without RETURN.

func CypherProcedureMetadata

func CypherProcedureMetadata(name string) Message

CypherProcedureMetadata returns typed metadata for a core built-in procedure.

func CypherProcedureMetadataDbAwaitIndex

func CypherProcedureMetadataDbAwaitIndex() Message

CypherProcedureMetadataDbAwaitIndex describes db.awaitIndex in procedure listings.

func CypherProcedureMetadataDbAwaitIndexes

func CypherProcedureMetadataDbAwaitIndexes() Message

CypherProcedureMetadataDbAwaitIndexes describes db.awaitIndexes in procedure listings.

func CypherProcedureMetadataDbClearQueryCaches

func CypherProcedureMetadataDbClearQueryCaches() Message

CypherProcedureMetadataDbClearQueryCaches describes db.clearQueryCaches in procedure listings.

func CypherProcedureMetadataDbConstraints

func CypherProcedureMetadataDbConstraints() Message

CypherProcedureMetadataDbConstraints describes db.constraints in procedure listings.

func CypherProcedureMetadataDbCreateSetNodeVectorProperty

func CypherProcedureMetadataDbCreateSetNodeVectorProperty() Message

CypherProcedureMetadataDbCreateSetNodeVectorProperty describes db.create.setNodeVectorProperty in procedure listings.

func CypherProcedureMetadataDbCreateSetRelationshipVectorProperty

func CypherProcedureMetadataDbCreateSetRelationshipVectorProperty() Message

CypherProcedureMetadataDbCreateSetRelationshipVectorProperty describes db.create.setRelationshipVectorProperty in procedure listings.

func CypherProcedureMetadataDbIndexFulltextCreateNodeIndex

func CypherProcedureMetadataDbIndexFulltextCreateNodeIndex() Message

CypherProcedureMetadataDbIndexFulltextCreateNodeIndex describes db.index.fulltext.createNodeIndex in procedure listings.

func CypherProcedureMetadataDbIndexFulltextCreateRelationshipIndex

func CypherProcedureMetadataDbIndexFulltextCreateRelationshipIndex() Message

CypherProcedureMetadataDbIndexFulltextCreateRelationshipIndex describes db.index.fulltext.createRelationshipIndex in procedure listings.

func CypherProcedureMetadataDbIndexFulltextDrop

func CypherProcedureMetadataDbIndexFulltextDrop() Message

CypherProcedureMetadataDbIndexFulltextDrop describes db.index.fulltext.drop in procedure listings.

func CypherProcedureMetadataDbIndexFulltextListAvailableAnalyzers

func CypherProcedureMetadataDbIndexFulltextListAvailableAnalyzers() Message

CypherProcedureMetadataDbIndexFulltextListAvailableAnalyzers describes db.index.fulltext.listAvailableAnalyzers in procedure listings.

func CypherProcedureMetadataDbIndexFulltextQueryNodes

func CypherProcedureMetadataDbIndexFulltextQueryNodes() Message

CypherProcedureMetadataDbIndexFulltextQueryNodes describes db.index.fulltext.queryNodes in procedure listings.

func CypherProcedureMetadataDbIndexFulltextQueryRelationships

func CypherProcedureMetadataDbIndexFulltextQueryRelationships() Message

CypherProcedureMetadataDbIndexFulltextQueryRelationships describes db.index.fulltext.queryRelationships in procedure listings.

func CypherProcedureMetadataDbIndexStats

func CypherProcedureMetadataDbIndexStats() Message

CypherProcedureMetadataDbIndexStats describes db.index.stats in procedure listings.

func CypherProcedureMetadataDbIndexVectorCreateNodeIndex

func CypherProcedureMetadataDbIndexVectorCreateNodeIndex() Message

CypherProcedureMetadataDbIndexVectorCreateNodeIndex describes db.index.vector.createNodeIndex in procedure listings.

func CypherProcedureMetadataDbIndexVectorCreateRelationshipIndex

func CypherProcedureMetadataDbIndexVectorCreateRelationshipIndex() Message

CypherProcedureMetadataDbIndexVectorCreateRelationshipIndex describes db.index.vector.createRelationshipIndex in procedure listings.

func CypherProcedureMetadataDbIndexVectorDrop

func CypherProcedureMetadataDbIndexVectorDrop() Message

CypherProcedureMetadataDbIndexVectorDrop describes db.index.vector.drop in procedure listings.

func CypherProcedureMetadataDbIndexVectorEmbed

func CypherProcedureMetadataDbIndexVectorEmbed() Message

CypherProcedureMetadataDbIndexVectorEmbed describes db.index.vector.embed in procedure listings.

func CypherProcedureMetadataDbIndexVectorQueryNodes

func CypherProcedureMetadataDbIndexVectorQueryNodes() Message

CypherProcedureMetadataDbIndexVectorQueryNodes describes db.index.vector.queryNodes in procedure listings.

func CypherProcedureMetadataDbIndexVectorQueryRelationships

func CypherProcedureMetadataDbIndexVectorQueryRelationships() Message

CypherProcedureMetadataDbIndexVectorQueryRelationships describes db.index.vector.queryRelationships in procedure listings.

func CypherProcedureMetadataDbIndexes

func CypherProcedureMetadataDbIndexes() Message

CypherProcedureMetadataDbIndexes describes db.indexes in procedure listings.

func CypherProcedureMetadataDbInfer

func CypherProcedureMetadataDbInfer() Message

CypherProcedureMetadataDbInfer describes db.infer in procedure listings.

func CypherProcedureMetadataDbInfo

func CypherProcedureMetadataDbInfo() Message

CypherProcedureMetadataDbInfo describes db.info in procedure listings.

func CypherProcedureMetadataDbLabels

func CypherProcedureMetadataDbLabels() Message

CypherProcedureMetadataDbLabels describes db.labels in procedure listings.

func CypherProcedureMetadataDbPing

func CypherProcedureMetadataDbPing() Message

CypherProcedureMetadataDbPing describes db.ping in procedure listings.

func CypherProcedureMetadataDbPropertyKeys

func CypherProcedureMetadataDbPropertyKeys() Message

CypherProcedureMetadataDbPropertyKeys describes db.propertyKeys in procedure listings.

func CypherProcedureMetadataDbRelationshipTypes

func CypherProcedureMetadataDbRelationshipTypes() Message

CypherProcedureMetadataDbRelationshipTypes describes db.relationshipTypes in procedure listings.

func CypherProcedureMetadataDbRerank

func CypherProcedureMetadataDbRerank() Message

CypherProcedureMetadataDbRerank describes db.rerank in procedure listings.

func CypherProcedureMetadataDbResampleIndex

func CypherProcedureMetadataDbResampleIndex() Message

CypherProcedureMetadataDbResampleIndex describes db.resampleIndex in procedure listings.

func CypherProcedureMetadataDbRetrieve

func CypherProcedureMetadataDbRetrieve() Message

CypherProcedureMetadataDbRetrieve describes db.retrieve in procedure listings.

func CypherProcedureMetadataDbRretrieve

func CypherProcedureMetadataDbRretrieve() Message

CypherProcedureMetadataDbRretrieve describes db.rretrieve in procedure listings.

func CypherProcedureMetadataDbSchemaNodeProperties

func CypherProcedureMetadataDbSchemaNodeProperties() Message

CypherProcedureMetadataDbSchemaNodeProperties describes db.schema.nodeProperties in procedure listings.

func CypherProcedureMetadataDbSchemaRelProperties

func CypherProcedureMetadataDbSchemaRelProperties() Message

CypherProcedureMetadataDbSchemaRelProperties describes db.schema.relProperties in procedure listings.

func CypherProcedureMetadataDbSchemaVisualization

func CypherProcedureMetadataDbSchemaVisualization() Message

CypherProcedureMetadataDbSchemaVisualization describes db.schema.visualization in procedure listings.

func CypherProcedureMetadataDbStatsClear

func CypherProcedureMetadataDbStatsClear() Message

CypherProcedureMetadataDbStatsClear describes db.stats.clear in procedure listings.

func CypherProcedureMetadataDbStatsCollect

func CypherProcedureMetadataDbStatsCollect() Message

CypherProcedureMetadataDbStatsCollect describes db.stats.collect in procedure listings.

func CypherProcedureMetadataDbStatsRetrieve

func CypherProcedureMetadataDbStatsRetrieve() Message

CypherProcedureMetadataDbStatsRetrieve describes db.stats.retrieve in procedure listings.

func CypherProcedureMetadataDbStatsRetrieveAllAnTheStats

func CypherProcedureMetadataDbStatsRetrieveAllAnTheStats() Message

CypherProcedureMetadataDbStatsRetrieveAllAnTheStats describes db.stats.retrieveAllAnTheStats in procedure listings.

func CypherProcedureMetadataDbStatsStatus

func CypherProcedureMetadataDbStatsStatus() Message

CypherProcedureMetadataDbStatsStatus describes db.stats.status in procedure listings.

func CypherProcedureMetadataDbStatsStop

func CypherProcedureMetadataDbStatsStop() Message

CypherProcedureMetadataDbStatsStop describes db.stats.stop in procedure listings.

func CypherProcedureMetadataDbTemporalAsOf

func CypherProcedureMetadataDbTemporalAsOf() Message

CypherProcedureMetadataDbTemporalAsOf describes db.temporal.asOf in procedure listings.

func CypherProcedureMetadataDbTemporalAssertNoOverlap

func CypherProcedureMetadataDbTemporalAssertNoOverlap() Message

CypherProcedureMetadataDbTemporalAssertNoOverlap describes db.temporal.assertNoOverlap in procedure listings.

func CypherProcedureMetadataDbTxlogByTxId

func CypherProcedureMetadataDbTxlogByTxId() Message

CypherProcedureMetadataDbTxlogByTxId describes db.txlog.byTxId in procedure listings.

func CypherProcedureMetadataDbTxlogEntries

func CypherProcedureMetadataDbTxlogEntries() Message

CypherProcedureMetadataDbTxlogEntries describes db.txlog.entries in procedure listings.

func CypherProcedureMetadataDbmsClientConfig

func CypherProcedureMetadataDbmsClientConfig() Message

CypherProcedureMetadataDbmsClientConfig describes dbms.clientConfig in procedure listings.

func CypherProcedureMetadataDbmsComponents

func CypherProcedureMetadataDbmsComponents() Message

CypherProcedureMetadataDbmsComponents describes dbms.components in procedure listings.

func CypherProcedureMetadataDbmsFunctions

func CypherProcedureMetadataDbmsFunctions() Message

CypherProcedureMetadataDbmsFunctions describes dbms.functions in procedure listings.

func CypherProcedureMetadataDbmsInfo

func CypherProcedureMetadataDbmsInfo() Message

CypherProcedureMetadataDbmsInfo describes dbms.info in procedure listings.

func CypherProcedureMetadataDbmsListConfig

func CypherProcedureMetadataDbmsListConfig() Message

CypherProcedureMetadataDbmsListConfig describes dbms.listConfig in procedure listings.

func CypherProcedureMetadataDbmsListConnections

func CypherProcedureMetadataDbmsListConnections() Message

CypherProcedureMetadataDbmsListConnections describes dbms.listConnections in procedure listings.

func CypherProcedureMetadataDbmsProcedures

func CypherProcedureMetadataDbmsProcedures() Message

CypherProcedureMetadataDbmsProcedures describes dbms.procedures in procedure listings.

func CypherProcedureMetadataGdsFastRPStats

func CypherProcedureMetadataGdsFastRPStats() Message

CypherProcedureMetadataGdsFastRPStats describes gds.fastRP.stats in procedure listings.

func CypherProcedureMetadataGdsFastRPStream

func CypherProcedureMetadataGdsFastRPStream() Message

CypherProcedureMetadataGdsFastRPStream describes gds.fastRP.stream in procedure listings.

func CypherProcedureMetadataGdsGraphDrop

func CypherProcedureMetadataGdsGraphDrop() Message

CypherProcedureMetadataGdsGraphDrop describes gds.graph.drop in procedure listings.

func CypherProcedureMetadataGdsGraphList

func CypherProcedureMetadataGdsGraphList() Message

CypherProcedureMetadataGdsGraphList describes gds.graph.list in procedure listings.

func CypherProcedureMetadataGdsGraphProject

func CypherProcedureMetadataGdsGraphProject() Message

CypherProcedureMetadataGdsGraphProject describes gds.graph.project in procedure listings.

func CypherProcedureMetadataGdsLinkPredictionAdamicAdarStream

func CypherProcedureMetadataGdsLinkPredictionAdamicAdarStream() Message

CypherProcedureMetadataGdsLinkPredictionAdamicAdarStream describes gds.linkPrediction.adamicAdar.stream in procedure listings.

func CypherProcedureMetadataGdsLinkPredictionCommonNeighborsStream

func CypherProcedureMetadataGdsLinkPredictionCommonNeighborsStream() Message

CypherProcedureMetadataGdsLinkPredictionCommonNeighborsStream describes gds.linkPrediction.commonNeighbors.stream in procedure listings.

func CypherProcedureMetadataGdsLinkPredictionJaccardStream

func CypherProcedureMetadataGdsLinkPredictionJaccardStream() Message

CypherProcedureMetadataGdsLinkPredictionJaccardStream describes gds.linkPrediction.jaccard.stream in procedure listings.

func CypherProcedureMetadataGdsLinkPredictionPredictStream

func CypherProcedureMetadataGdsLinkPredictionPredictStream() Message

CypherProcedureMetadataGdsLinkPredictionPredictStream describes gds.linkPrediction.predict.stream in procedure listings.

func CypherProcedureMetadataGdsLinkPredictionPreferentialAttachmentStream

func CypherProcedureMetadataGdsLinkPredictionPreferentialAttachmentStream() Message

CypherProcedureMetadataGdsLinkPredictionPreferentialAttachmentStream describes gds.linkPrediction.preferentialAttachment.stream in procedure listings.

func CypherProcedureMetadataGdsLinkPredictionResourceAllocationStream

func CypherProcedureMetadataGdsLinkPredictionResourceAllocationStream() Message

CypherProcedureMetadataGdsLinkPredictionResourceAllocationStream describes gds.linkPrediction.resourceAllocation.stream in procedure listings.

func CypherProcedureMetadataGdsVersion

func CypherProcedureMetadataGdsVersion() Message

CypherProcedureMetadataGdsVersion describes gds.version in procedure listings.

func CypherProcedureMetadataNornicdbDecayInfo

func CypherProcedureMetadataNornicdbDecayInfo() Message

CypherProcedureMetadataNornicdbDecayInfo describes nornicdb.decay.info in procedure listings.

func CypherProcedureMetadataNornicdbKnowledgepolicyDeindexStatus

func CypherProcedureMetadataNornicdbKnowledgepolicyDeindexStatus() Message

CypherProcedureMetadataNornicdbKnowledgepolicyDeindexStatus describes nornicdb.knowledgepolicy.deindexStatus in procedure listings.

func CypherProcedureMetadataNornicdbKnowledgepolicyInfo

func CypherProcedureMetadataNornicdbKnowledgepolicyInfo() Message

CypherProcedureMetadataNornicdbKnowledgepolicyInfo describes nornicdb.knowledgepolicy.info in procedure listings.

func CypherProcedureMetadataNornicdbKnowledgepolicyPolicies

func CypherProcedureMetadataNornicdbKnowledgepolicyPolicies() Message

CypherProcedureMetadataNornicdbKnowledgepolicyPolicies describes nornicdb.knowledgepolicy.policies in procedure listings.

func CypherProcedureMetadataNornicdbKnowledgepolicyProfiles

func CypherProcedureMetadataNornicdbKnowledgepolicyProfiles() Message

CypherProcedureMetadataNornicdbKnowledgepolicyProfiles describes nornicdb.knowledgepolicy.profiles in procedure listings.

func CypherProcedureMetadataNornicdbKnowledgepolicyResolve

func CypherProcedureMetadataNornicdbKnowledgepolicyResolve() Message

CypherProcedureMetadataNornicdbKnowledgepolicyResolve describes nornicdb.knowledgepolicy.resolve in procedure listings.

func CypherProcedureMetadataNornicdbStats

func CypherProcedureMetadataNornicdbStats() Message

CypherProcedureMetadataNornicdbStats describes nornicdb.stats in procedure listings.

func CypherProcedureMetadataNornicdbVersion

func CypherProcedureMetadataNornicdbVersion() Message

CypherProcedureMetadataNornicdbVersion describes nornicdb.version in procedure listings.

func CypherProcedureMetadataTxSetMetaData

func CypherProcedureMetadataTxSetMetaData() Message

CypherProcedureMetadataTxSetMetaData describes tx.setMetaData in procedure listings.

func CypherProceduresAlreadyExists

func CypherProceduresAlreadyExists(procedure string) Message

func CypherProceduresArgumentCount

func CypherProceduresArgumentCount(procedure string, expected, actual int) Message

func CypherProceduresBodyRequired

func CypherProceduresBodyRequired() Message

func CypherProceduresCatalogReadFailed

func CypherProceduresCatalogReadFailed(cause error) Message

func CypherProceduresCatalogRecordDecodeFailed

func CypherProceduresCatalogRecordDecodeFailed(node string) Message

func CypherProceduresCatalogRecordInvalid

func CypherProceduresCatalogRecordInvalid(node string) Message

func CypherProceduresCreateFulltextIndexFailed

func CypherProceduresCreateFulltextIndexFailed(cause error) Message

func CypherProceduresCreateInTransaction

func CypherProceduresCreateInTransaction() Message

func CypherProceduresCreateInvalidSyntax

func CypherProceduresCreateInvalidSyntax() Message

func CypherProceduresCreateRelationshipFulltextIndexFailed

func CypherProceduresCreateRelationshipFulltextIndexFailed(cause error) Message

func CypherProceduresCreateRelationshipVectorIndexFailed

func CypherProceduresCreateRelationshipVectorIndexFailed(cause error) Message

func CypherProceduresCreateVectorIndexFailed

func CypherProceduresCreateVectorIndexFailed(cause error) Message

func CypherProceduresDropFailed

func CypherProceduresDropFailed(procedure string, cause error) Message

func CypherProceduresDropInTransaction

func CypherProceduresDropInTransaction() Message

func CypherProceduresDropInvalidSyntax

func CypherProceduresDropInvalidSyntax() Message

func CypherProceduresDuplicateArgument

func CypherProceduresDuplicateArgument(argument string) Message

func CypherProceduresEmbedParameterFailed

func CypherProceduresEmbedParameterFailed(parameter, value string, cause error) Message

func CypherProceduresEmbedQueryFailed

func CypherProceduresEmbedQueryFailed(query string, cause error) Message

func CypherProceduresEncodeRecordFailed

func CypherProceduresEncodeRecordFailed(cause error) Message

func CypherProceduresFulltextCreateNodeArgumentsRequired

func CypherProceduresFulltextCreateNodeArgumentsRequired() Message

func CypherProceduresFulltextCreateNodeInvalidSyntax

func CypherProceduresFulltextCreateNodeInvalidSyntax(parentheses bool) Message

func CypherProceduresFulltextCreateRelationshipArguments

func CypherProceduresFulltextCreateRelationshipArguments() Message

func CypherProceduresFulltextCreateRelationshipInvalid

func CypherProceduresFulltextCreateRelationshipInvalid(parentheses bool) Message

func CypherProceduresFulltextDropInvalidSyntax

func CypherProceduresFulltextDropInvalidSyntax(parentheses bool) Message

func CypherProceduresInvalidArgumentName

func CypherProceduresInvalidArgumentName(argument string) Message

func CypherProceduresInvalidDimension

func CypherProceduresInvalidDimension(cause error) Message

func CypherProceduresInvalidMode

func CypherProceduresInvalidMode(mode string) Message

func CypherProceduresMetadataActiveTransactionRequired

func CypherProceduresMetadataActiveTransactionRequired() Message

func CypherProceduresMetadataEntryRequired

func CypherProceduresMetadataEntryRequired() Message

func CypherProceduresMetadataInvalidSyntax

func CypherProceduresMetadataInvalidSyntax(parentheses bool) Message

func CypherProceduresMetadataObjectRequired

func CypherProceduresMetadataObjectRequired() Message

func CypherProceduresMetadataTransactionUnsupported

func CypherProceduresMetadataTransactionUnsupported() Message

func CypherProceduresNodeNotFound

func CypherProceduresNodeNotFound(node string) Message

func CypherProceduresParameterNonNumeric

func CypherProceduresParameterNonNumeric(parameter, valueType string) Message

func CypherProceduresParameterNotProvided

func CypherProceduresParameterNotProvided(parameter string) Message

func CypherProceduresParameterStringEmbedderRequired

func CypherProceduresParameterStringEmbedderRequired(parameter string) Message

func CypherProceduresParameterUnsupportedType

func CypherProceduresParameterUnsupportedType(parameter, valueType string) Message

func CypherProceduresPersistCatalogFailed

func CypherProceduresPersistCatalogFailed(cause error) Message

func CypherProceduresQueryInputPossiblyUnsupported

func CypherProceduresQueryInputPossiblyUnsupported() Message

func CypherProceduresQueryInputRequired

func CypherProceduresQueryInputRequired() Message

func CypherProceduresReadContainsWrite

func CypherProceduresReadContainsWrite() Message

func CypherProceduresRegistryReloadFailed

func CypherProceduresRegistryReloadFailed(cause error) Message

func CypherProceduresRelationshipNotFound

func CypherProceduresRelationshipNotFound(relationship string) Message

func CypherProceduresSetMetadataFailed

func CypherProceduresSetMetadataFailed(cause error) Message

func CypherProceduresSetNodeVectorArgumentRequired

func CypherProceduresSetNodeVectorArgumentRequired() Message

func CypherProceduresSetNodeVectorArgumentsRequired

func CypherProceduresSetNodeVectorArgumentsRequired() Message

func CypherProceduresSetNodeVectorInvalidSyntax

func CypherProceduresSetNodeVectorInvalidSyntax() Message

func CypherProceduresSetNodeVectorParenthesesRequired

func CypherProceduresSetNodeVectorParenthesesRequired() Message

func CypherProceduresSetRelationshipVectorArgument

func CypherProceduresSetRelationshipVectorArgument() Message

func CypherProceduresSetRelationshipVectorArguments

func CypherProceduresSetRelationshipVectorArguments() Message

func CypherProceduresSetRelationshipVectorInvalidSyntax

func CypherProceduresSetRelationshipVectorInvalidSyntax() Message

func CypherProceduresSetRelationshipVectorParentheses

func CypherProceduresSetRelationshipVectorParentheses() Message

func CypherProceduresStringQueryEmbedderRequired

func CypherProceduresStringQueryEmbedderRequired() Message

func CypherProceduresUnsupportedParameters

func CypherProceduresUnsupportedParameters(parameters string) Message

func CypherProceduresUpdateCatalogFailed

func CypherProceduresUpdateCatalogFailed(cause error) Message

func CypherProceduresUpdateNodeFailed

func CypherProceduresUpdateNodeFailed(cause error) Message

func CypherProceduresUpdateRelationshipFailed

func CypherProceduresUpdateRelationshipFailed(cause error) Message

func CypherProceduresVectorCreateNodeArgumentsRequired

func CypherProceduresVectorCreateNodeArgumentsRequired() Message

func CypherProceduresVectorCreateNodeInvalidSyntax

func CypherProceduresVectorCreateNodeInvalidSyntax(parentheses bool) Message

func CypherProceduresVectorCreateRelationshipArguments

func CypherProceduresVectorCreateRelationshipArguments() Message

func CypherProceduresVectorCreateRelationshipInvalidSyntax

func CypherProceduresVectorCreateRelationshipInvalidSyntax(parentheses bool) Message

func CypherProceduresVectorDropInvalidSyntax

func CypherProceduresVectorDropInvalidSyntax(parentheses bool) Message

func CypherProceduresVectorQueryParseFailed

func CypherProceduresVectorQueryParseFailed(cause error) Message

func CypherResidualCollectSubqueryExecutionFailed

func CypherResidualCollectSubqueryExecutionFailed(cause error) Message

CypherResidualCollectSubqueryExecutionFailed identifies a wrapped COLLECT execution failure.

func CypherResidualCollectSubqueryReturnRequired

func CypherResidualCollectSubqueryReturnRequired() Message

CypherResidualCollectSubqueryReturnRequired identifies a COLLECT subquery missing RETURN.

func CypherResidualCollectSubquerySyntaxInvalid

func CypherResidualCollectSubquerySyntaxInvalid() Message

CypherResidualCollectSubquerySyntaxInvalid identifies malformed COLLECT subquery syntax.

func CypherResidualCompositeShowTargetRequired

func CypherResidualCompositeShowTargetRequired(command string) Message

CypherResidualCompositeShowTargetRequired identifies SHOW against a composite root.

func CypherResidualCompoundOptionalMatchNotFound

func CypherResidualCompoundOptionalMatchNotFound(query string) Message

CypherResidualCompoundOptionalMatchNotFound identifies a compound query missing OPTIONAL MATCH.

func CypherResidualCreateRelationshipInvalid

func CypherResidualCreateRelationshipInvalid(pattern string) Message

CypherResidualCreateRelationshipInvalid identifies an invalid CREATE relationship pattern.

func CypherResidualCreateSetScopeEntityRequired

func CypherResidualCreateSetScopeEntityRequired(item string) Message

CypherResidualCreateSetScopeEntityRequired identifies a non-entity CREATE...SET projection.

func CypherResidualCreateWithExpressionInvalid

func CypherResidualCreateWithExpressionInvalid(expression string) Message

CypherResidualCreateWithExpressionInvalid identifies an unresolved CREATE...WITH expression.

func CypherResidualEmptyLabelAfterColon

func CypherResidualEmptyLabelAfterColon(pattern string) Message

CypherResidualEmptyLabelAfterColon identifies an empty CREATE label.

func CypherResidualForeachClauseNotFound

func CypherResidualForeachClauseNotFound(query string) Message

CypherResidualForeachClauseNotFound identifies a routed query missing FOREACH.

func CypherResidualInitialNodesLookupFailed

func CypherResidualInitialNodesLookupFailed(cause error) Message

CypherResidualInitialNodesLookupFailed identifies a wrapped initial-node lookup failure.

func CypherResidualLoadCSVUnsupported

func CypherResidualLoadCSVUnsupported() Message

CypherResidualLoadCSVUnsupported identifies unsupported embedded LOAD CSV execution.

func CypherResidualMatchNodePatternParseFailed

func CypherResidualMatchNodePatternParseFailed(pattern string) Message

CypherResidualMatchNodePatternParseFailed identifies an invalid MATCH node pattern.

func CypherResidualMergePatternInvalid

func CypherResidualMergePatternInvalid(pattern string) Message

CypherResidualMergePatternInvalid identifies an invalid MERGE node pattern.

func CypherResidualOptionalMatchNotFound

func CypherResidualOptionalMatchNotFound(query string) Message

CypherResidualOptionalMatchNotFound identifies a routed query missing OPTIONAL MATCH.

func CypherResidualPolicyAllowedRequired

func CypherResidualPolicyAllowedRequired(edgeType string) Message

CypherResidualPolicyAllowedRequired identifies an edge lacking an ALLOWED policy match.

func CypherResidualPolicyDisallowed

func CypherResidualPolicyDisallowed(name, sourceLabel, edgeType, targetLabel string) Message

CypherResidualPolicyDisallowed identifies an edge rejected by a DISALLOWED policy.

func CypherResidualPropertyMapSyntaxInvalid

func CypherResidualPropertyMapSyntaxInvalid(pattern string) Message

CypherResidualPropertyMapSyntaxInvalid identifies an unterminated CREATE property map.

func CypherResidualRelationshipConnectorExpected

func CypherResidualRelationshipConnectorExpected(connector string) Message

CypherResidualRelationshipConnectorExpected identifies an invalid relationship connector.

func CypherResidualReturnClauseRequired

func CypherResidualReturnClauseRequired() Message

CypherResidualReturnClauseRequired identifies a missing RETURN clause.

func CypherResidualSetAssignmentInvalid

func CypherResidualSetAssignmentInvalid(assignment string) Message

CypherResidualSetAssignmentInvalid identifies malformed SET assignment syntax.

func CypherResidualSetEntityAssignmentInvalid

func CypherResidualSetEntityAssignmentInvalid(assignment string, cause error) Message

CypherResidualSetEntityAssignmentInvalid identifies a wrapped invalid entity assignment.

func CypherResidualSetMergeMapOrParameterRequired

func CypherResidualSetMergeMapOrParameterRequired(value string) Message

CypherResidualSetMergeMapOrParameterRequired identifies an invalid SET += source.

func CypherResidualShowAliasesManagerUnavailable

func CypherResidualShowAliasesManagerUnavailable() Message

CypherResidualShowAliasesManagerUnavailable identifies unavailable multi-database support.

func CypherResidualShowAliasesSyntaxInvalid

func CypherResidualShowAliasesSyntaxInvalid() Message

CypherResidualShowAliasesSyntaxInvalid identifies malformed SHOW ALIASES syntax.

func CypherResidualSumArithmeticTermUnsupported

func CypherResidualSumArithmeticTermUnsupported(term string) Message

CypherResidualSumArithmeticTermUnsupported identifies an unsupported SUM arithmetic term.

func CypherResidualSumNumericRequired

func CypherResidualSumNumericRequired(value any, expression string) Message

CypherResidualSumNumericRequired identifies a non-numeric SUM operand.

func CypherResidualUnionAllClauseNotFound

func CypherResidualUnionAllClauseNotFound(query string) Message

CypherResidualUnionAllClauseNotFound identifies a routed query missing UNION ALL.

func CypherResidualUnionBranchFailed

func CypherResidualUnionBranchFailed(branch int, query string, cause error) Message

CypherResidualUnionBranchFailed identifies a wrapped UNION branch failure.

func CypherResidualUnionClauseNotFound

func CypherResidualUnionClauseNotFound(query string) Message

CypherResidualUnionClauseNotFound identifies a routed query missing UNION.

func CypherResidualUnionColumnCountMismatch

func CypherResidualUnionColumnCountMismatch(expected, actual int) Message

CypherResidualUnionColumnCountMismatch identifies incompatible UNION projections.

func CypherResidualUnwindClauseNotFound

func CypherResidualUnwindClauseNotFound(query string) Message

CypherResidualUnwindClauseNotFound identifies a routed query missing UNWIND.

func CypherResidualWithClauseNotFound

func CypherResidualWithClauseNotFound(query string) Message

CypherResidualWithClauseNotFound identifies a routed query missing WITH.

func CypherResidualWithItemInvalid

func CypherResidualWithItemInvalid(item string) Message

CypherResidualWithItemInvalid identifies a malformed WITH projection item.

func CypherSchemaAddFulltextIndexFailed

func CypherSchemaAddFulltextIndexFailed(cause error) Message

func CypherSchemaAddFulltextRelationshipIndexFailed

func CypherSchemaAddFulltextRelationshipIndexFailed(cause error) Message

func CypherSchemaBackfillIndexFailed

func CypherSchemaBackfillIndexFailed(label string, cause error) Message

func CypherSchemaBackfillPropertyIndexFailed

func CypherSchemaBackfillPropertyIndexFailed(label, property string, cause error) Message

func CypherSchemaCompositeDDLNotAllowed

func CypherSchemaCompositeDDLNotAllowed() Message

func CypherSchemaConstraintPropertiesRequired

func CypherSchemaConstraintPropertiesRequired(kind string) Message

func CypherSchemaContractEntryRequired

func CypherSchemaContractEntryRequired() Message

func CypherSchemaCreateRangeIndexFailed

func CypherSchemaCreateRangeIndexFailed(cause error) Message

func CypherSchemaDomainAllowedValueRequired

func CypherSchemaDomainAllowedValueRequired() Message

func CypherSchemaDomainValueListInvalid

func CypherSchemaDomainValueListInvalid(cause error) Message

func CypherSchemaEmptyClause

func CypherSchemaEmptyClause(clause string) Message

func CypherSchemaEmptyStatement

func CypherSchemaEmptyStatement() Message

func CypherSchemaFlushPendingWritesFailed

func CypherSchemaFlushPendingWritesFailed(cause error) Message

func CypherSchemaFulltextPropertiesRequired

func CypherSchemaFulltextPropertiesRequired() Message

func CypherSchemaIndexNameRequired

func CypherSchemaIndexNameRequired() Message

func CypherSchemaIndexPropertiesRequired

func CypherSchemaIndexPropertiesRequired() Message

func CypherSchemaInvalidClause

func CypherSchemaInvalidClause(clause string) Message

func CypherSchemaInvalidIdentifierSegment

func CypherSchemaInvalidIdentifierSegment() Message

func CypherSchemaInvalidIfNotExistsClause

func CypherSchemaInvalidIfNotExistsClause() Message

func CypherSchemaInvalidKeyword

func CypherSchemaInvalidKeyword(keyword string) Message

func CypherSchemaInvalidPattern

func CypherSchemaInvalidPattern(pattern string) Message

func CypherSchemaInvalidSyntax

func CypherSchemaInvalidSyntax(subject string) Message

func CypherSchemaInvalidTrailingSyntax

func CypherSchemaInvalidTrailingSyntax() Message

func CypherSchemaMalformedRequireBlock

func CypherSchemaMalformedRequireBlock() Message

func CypherSchemaManagerUnavailable

func CypherSchemaManagerUnavailable() Message

func CypherSchemaMissingKeyword

func CypherSchemaMissingKeyword(keyword string) Message

func CypherSchemaNameRequired

func CypherSchemaNameRequired(command, entity string) Message

func CypherSchemaNestedContractEntryUnsupported

func CypherSchemaNestedContractEntryUnsupported(entry string) Message

func CypherSchemaPositiveMaxCountRequired

func CypherSchemaPositiveMaxCountRequired(raw string) Message

func CypherSchemaRangeIndexSinglePropertyRequired

func CypherSchemaRangeIndexSinglePropertyRequired(count int) Message

func CypherSchemaTemporalNodeArityRequired

func CypherSchemaTemporalNodeArityRequired() Message

func CypherSchemaTemporalRelationshipArityRequired

func CypherSchemaTemporalRelationshipArityRequired() Message

func CypherSchemaUnknownCommand

func CypherSchemaUnknownCommand(statement string) Message

func CypherSchemaUnsupportedCreateConstraintShape

func CypherSchemaUnsupportedCreateConstraintShape() Message

func CypherSchemaUnsupportedPredicate

func CypherSchemaUnsupportedPredicate(predicate string) Message

func CypherSchemaUnsupportedPropertyType

func CypherSchemaUnsupportedPropertyType(propertyType string) Message

func CypherSchemaUnterminatedString

func CypherSchemaUnterminatedString(raw string) Message

func CypherSpecializedCallsArgumentEmpty

func CypherSpecializedCallsArgumentEmpty(argument string) Message

func CypherSpecializedCallsArgumentRequired

func CypherSpecializedCallsArgumentRequired(argument string) Message

func CypherSpecializedCallsDateTimeRequired

func CypherSpecializedCallsDateTimeRequired(argument string) Message

func CypherSpecializedCallsEmbedParameterFailed

func CypherSpecializedCallsEmbedParameterFailed(parameter, value string, cause error) Message

func CypherSpecializedCallsEmbedQueryTextFailed

func CypherSpecializedCallsEmbedQueryTextFailed(query string, cause error) Message

func CypherSpecializedCallsEmbedderNotConfigured

func CypherSpecializedCallsEmbedderNotConfigured() Message

func CypherSpecializedCallsFulltextArgumentCount

func CypherSpecializedCallsFulltextArgumentCount() Message

func CypherSpecializedCallsFulltextIndexNotFound

func CypherSpecializedCallsFulltextIndexNotFound(index string) Message

func CypherSpecializedCallsFulltextOptionInvalid

func CypherSpecializedCallsFulltextOptionInvalid(option string, value any) Message

func CypherSpecializedCallsParameterNonNumeric

func CypherSpecializedCallsParameterNonNumeric(parameter, valueType string) Message

func CypherSpecializedCallsParameterNotProvided

func CypherSpecializedCallsParameterNotProvided(parameter string) Message

func CypherSpecializedCallsParameterStringEmbedderRequired

func CypherSpecializedCallsParameterStringEmbedderRequired(parameter string) Message

func CypherSpecializedCallsParameterUnsupportedType

func CypherSpecializedCallsParameterUnsupportedType(parameter, valueType string) Message

func CypherSpecializedCallsProcedureOptionsMapRequired

func CypherSpecializedCallsProcedureOptionsMapRequired() Message

func CypherSpecializedCallsQueryInputPossiblyUnsupported

func CypherSpecializedCallsQueryInputPossiblyUnsupported() Message

func CypherSpecializedCallsQueryInputRequired

func CypherSpecializedCallsQueryInputRequired() Message

func CypherSpecializedCallsStringQueryEmbedderRequired

func CypherSpecializedCallsStringQueryEmbedderRequired() Message

func CypherSpecializedCallsTemporalAsOfArgumentCount

func CypherSpecializedCallsTemporalAsOfArgumentCount() Message

func CypherSpecializedCallsTemporalAssertArgumentCount

func CypherSpecializedCallsTemporalAssertArgumentCount() Message

func CypherSpecializedCallsTemporalClosingParenthesis

func CypherSpecializedCallsTemporalClosingParenthesis(procedure string) Message

func CypherSpecializedCallsTemporalInvalidSyntax

func CypherSpecializedCallsTemporalInvalidSyntax(procedure string) Message

func CypherSpecializedCallsTemporalLookupFailed

func CypherSpecializedCallsTemporalLookupFailed(label string, cause error) Message

func CypherSpecializedCallsTemporalOverlap

func CypherSpecializedCallsTemporalOverlap(property string, value any) Message

func CypherSpecializedCallsTemporalReadNodesFailed

func CypherSpecializedCallsTemporalReadNodesFailed(label string, cause error) Message

func CypherSpecializedCallsTxlogByIDArgumentRequired

func CypherSpecializedCallsTxlogByIDArgumentRequired() Message

func CypherSpecializedCallsTxlogClosingParenthesis

func CypherSpecializedCallsTxlogClosingParenthesis(procedure string) Message

func CypherSpecializedCallsTxlogEntriesArgumentRequired

func CypherSpecializedCallsTxlogEntriesArgumentRequired() Message

func CypherSpecializedCallsTxlogFindEntriesFailed

func CypherSpecializedCallsTxlogFindEntriesFailed(cause error) Message

func CypherSpecializedCallsTxlogFromSequencePositive

func CypherSpecializedCallsTxlogFromSequencePositive() Message

func CypherSpecializedCallsTxlogIDEmpty

func CypherSpecializedCallsTxlogIDEmpty() Message

func CypherSpecializedCallsTxlogInvalidSequence

func CypherSpecializedCallsTxlogInvalidSequence(argument string, cause error) Message

func CypherSpecializedCallsTxlogInvalidSyntax

func CypherSpecializedCallsTxlogInvalidSyntax(procedure string) Message

func CypherSpecializedCallsTxlogReadEntriesFailed

func CypherSpecializedCallsTxlogReadEntriesFailed(cause error) Message

func CypherSpecializedCallsTxlogSequenceOrder

func CypherSpecializedCallsTxlogSequenceOrder() Message

func CypherSpecializedCallsUnsignedNonNegative

func CypherSpecializedCallsUnsignedNonNegative(argument string) Message

func CypherSpecializedCallsUnsignedValid

func CypherSpecializedCallsUnsignedValid(argument string) Message

func CypherSpecializedCallsUnsignedWholeNonNegative

func CypherSpecializedCallsUnsignedWholeNonNegative(argument string) Message

func CypherSpecializedCallsUnsupportedParameters

func CypherSpecializedCallsUnsupportedParameters(parameters string) Message

func CypherSpecializedCallsVectorEmbedArgumentRequired

func CypherSpecializedCallsVectorEmbedArgumentRequired() Message

func CypherSpecializedCallsVectorEmbedFailed

func CypherSpecializedCallsVectorEmbedFailed(cause error) Message

func CypherSpecializedCallsVectorEmbedInvalidSyntax

func CypherSpecializedCallsVectorEmbedInvalidSyntax() Message

func CypherSpecializedCallsVectorEmbedParameterString

func CypherSpecializedCallsVectorEmbedParameterString(parameter string) Message

func CypherSpecializedCallsVectorEmbedStringRequired

func CypherSpecializedCallsVectorEmbedStringRequired() Message

func CypherSpecializedCallsVectorEmbedTextRequired

func CypherSpecializedCallsVectorEmbedTextRequired() Message

func CypherSpecializedCallsVectorEmbedUnmatchedParenthesis

func CypherSpecializedCallsVectorEmbedUnmatchedParenthesis() Message

func CypherSpecializedCallsVectorParametersMissing

func CypherSpecializedCallsVectorParametersMissing() Message

func CypherSpecializedCallsVectorProcedureNotFound

func CypherSpecializedCallsVectorProcedureNotFound() Message

func CypherSpecializedCallsVectorQueryFailed

func CypherSpecializedCallsVectorQueryFailed() Message

func CypherSpecializedCallsVectorQueryParseFailed

func CypherSpecializedCallsVectorQueryParseFailed(cause error) Message

func CypherSpecializedCallsVectorUnmatchedParenthesis

func CypherSpecializedCallsVectorUnmatchedParenthesis() Message

func CypherSpecializedCallsWALConfigUnavailable

func CypherSpecializedCallsWALConfigUnavailable() Message

func CypherSpecializedCallsWALDirectoryNotConfigured

func CypherSpecializedCallsWALDirectoryNotConfigured() Message

func CypherSpecializedCallsWALUnavailable

func CypherSpecializedCallsWALUnavailable() Message

func CypherSubqueriesAfterCallClauseUnsupported

func CypherSubqueriesAfterCallClauseUnsupported(clause string) Message

func CypherSubqueriesBatchFailed

func CypherSubqueriesBatchFailed(batch int, cause error) Message

func CypherSubqueriesBatchProgressFailed

func CypherSubqueriesBatchProgressFailed(batch, total int, cause error) Message

func CypherSubqueriesBatchedLookupColumnsUnexpected

func CypherSubqueriesBatchedLookupColumnsUnexpected(columns string) Message

func CypherSubqueriesBatchedLookupFailed

func CypherSubqueriesBatchedLookupFailed(cause error) Message

func CypherSubqueriesCallBodyEmpty

func CypherSubqueriesCallBodyEmpty() Message

func CypherSubqueriesCallBodyExpected

func CypherSubqueriesCallBodyExpected() Message

func CypherSubqueriesCallError

func CypherSubqueriesCallError(cause error) Message

func CypherSubqueriesCallForNodeFailed

func CypherSubqueriesCallForNodeFailed(node string, cause error) Message

func CypherSubqueriesCallNotFound

func CypherSubqueriesCallNotFound() Message

func CypherSubqueriesChainedTransactionsUnsupported

func CypherSubqueriesChainedTransactionsUnsupported(batchSize int) Message

func CypherSubqueriesCorrelatedImportFailed

func CypherSubqueriesCorrelatedImportFailed(importVariable string, cause error) Message

func CypherSubqueriesCorrelatedUnionBranchFailed

func CypherSubqueriesCorrelatedUnionBranchFailed(branch int, seed string, cause error) Message

func CypherSubqueriesCorrelatedUnionParseFailed

func CypherSubqueriesCorrelatedUnionParseFailed() Message

func CypherSubqueriesCorrelatedVariableEmpty

func CypherSubqueriesCorrelatedVariableEmpty() Message

func CypherSubqueriesExecutionFailed

func CypherSubqueriesExecutionFailed(cause error) Message

func CypherSubqueriesFirstBatchFailed

func CypherSubqueriesFirstBatchFailed(cause error) Message

func CypherSubqueriesInferMessagesEmpty

func CypherSubqueriesInferMessagesEmpty() Message

func CypherSubqueriesInferPromptOrMessagesRequired

func CypherSubqueriesInferPromptOrMessagesRequired() Message

func CypherSubqueriesInferenceManagerUnavailable

func CypherSubqueriesInferenceManagerUnavailable() Message

func CypherSubqueriesMatchBeforeCallNotFound

func CypherSubqueriesMatchBeforeCallNotFound() Message

func CypherSubqueriesNodeLoadFailed

func CypherSubqueriesNodeLoadFailed(cause error) Message

func CypherSubqueriesNodePatternInvalid

func CypherSubqueriesNodePatternInvalid(pattern string) Message

func CypherSubqueriesOptionalImportFallbackFailed

func CypherSubqueriesOptionalImportFallbackFailed(importVariable string, cause error) Message

func CypherSubqueriesOuterMatchBindingsFailed

func CypherSubqueriesOuterMatchBindingsFailed(cause error) Message

func CypherSubqueriesOuterMatchProjectionMissing

func CypherSubqueriesOuterMatchProjectionMissing(variable string) Message

func CypherSubqueriesOuterMatchSeedsFailed

func CypherSubqueriesOuterMatchSeedsFailed(cause error) Message

func CypherSubqueriesQueryRequired

func CypherSubqueriesQueryRequired() Message

func CypherSubqueriesRAGCandidateIDRequired

func CypherSubqueriesRAGCandidateIDRequired() Message

func CypherSubqueriesRAGCandidatesRequired

func CypherSubqueriesRAGCandidatesRequired() Message

func CypherSubqueriesRAGFailClosedEmbeddingUnavailable

func CypherSubqueriesRAGFailClosedEmbeddingUnavailable(cause error) Message

func CypherSubqueriesRAGFailClosedInvalid

func CypherSubqueriesRAGFailClosedInvalid(field string) Message

func CypherSubqueriesRAGParameterMustBeMap

func CypherSubqueriesRAGParameterMustBeMap(procedure, parameter string) Message

func CypherSubqueriesRAGParenthesisUnmatched

func CypherSubqueriesRAGParenthesisUnmatched(procedure string) Message

func CypherSubqueriesRAGRequestArgumentRequired

func CypherSubqueriesRAGRequestArgumentRequired(procedure string) Message

func CypherSubqueriesRAGRequestMustBeMapLiteral

func CypherSubqueriesRAGRequestMustBeMapLiteral(procedure string) Message

func CypherSubqueriesRAGSyntaxInvalid

func CypherSubqueriesRAGSyntaxInvalid(procedure string) Message

func CypherSubqueriesSeedRowMissingVariable

func CypherSubqueriesSeedRowMissingVariable(variable string) Message

func CypherSubqueriesStaticUnionBranchFailed

func CypherSubqueriesStaticUnionBranchFailed(branch int, cause error) Message

func CypherSubqueriesTransactionBatchFailed

func CypherSubqueriesTransactionBatchFailed(variable string, batch int, cause error) Message

func CypherSubqueriesTransactionBodyEmpty

func CypherSubqueriesTransactionBodyEmpty(variable string) Message

func CypherSubqueriesTransactionImportShapeUnsupported

func CypherSubqueriesTransactionImportShapeUnsupported(variable string) Message

func CypherSubqueriesUnionColumnCountMismatch

func CypherSubqueriesUnionColumnCountMismatch(first, second int) Message

func CypherSubqueriesUnionWithImportsFailed

func CypherSubqueriesUnionWithImportsFailed(branch int, cause error) Message

func CypherSubqueriesUseClauseFailed

func CypherSubqueriesUseClauseFailed(cause error) Message

func CypherSubqueriesUseDatabaseFailed

func CypherSubqueriesUseDatabaseFailed(database string, cause error) Message

func CypherSubqueriesWithBodyEmpty

func CypherSubqueriesWithBodyEmpty() Message

func CypherSubqueriesWithImportExpressionInvalid

func CypherSubqueriesWithImportExpressionInvalid(expression string) Message

func CypherSubqueriesWithImportUnknownVariable

func CypherSubqueriesWithImportUnknownVariable(variable string) Message

func CypherSubqueriesWithImportsRequired

func CypherSubqueriesWithImportsRequired() Message

func CypherSubqueriesWithQueryClauseRequired

func CypherSubqueriesWithQueryClauseRequired() Message

func CypherTransactionsAlreadyActive

func CypherTransactionsAlreadyActive() Message

func CypherTransactionsCaseBlockMissing

func CypherTransactionsCaseBlockMissing() Message

func CypherTransactionsCaseSyntaxInvalid

func CypherTransactionsCaseSyntaxInvalid() Message

func CypherTransactionsCommitFailed

func CypherTransactionsCommitFailed(cause error) Message

func CypherTransactionsConditionNotBoolean

func CypherTransactionsConditionNotBoolean(value any) Message

func CypherTransactionsConfigureFailed

func CypherTransactionsConfigureFailed(cause error) Message

func CypherTransactionsDeleteResidualRelationships

func CypherTransactionsDeleteResidualRelationships(nodeID string) Message

func CypherTransactionsEngineUnsupported

func CypherTransactionsEngineUnsupported() Message

func CypherTransactionsInvalidScriptAction

func CypherTransactionsInvalidScriptAction(action string) Message

func CypherTransactionsMatchWithUnwindClausesRequired

func CypherTransactionsMatchWithUnwindClausesRequired() Message

func CypherTransactionsMultiMatchReturnRequired

func CypherTransactionsMultiMatchReturnRequired() Message

func CypherTransactionsMultipleMatchExpected

func CypherTransactionsMultipleMatchExpected() Message

func CypherTransactionsNoActive

func CypherTransactionsNoActive() Message

func CypherTransactionsOrderByParseFailed

func CypherTransactionsOrderByParseFailed() Message

func CypherTransactionsPinNamespaceFailed

func CypherTransactionsPinNamespaceFailed(cause error) Message

func CypherTransactionsPrimeNamespaceFailed

func CypherTransactionsPrimeNamespaceFailed(cause error) Message

func CypherTransactionsQueryInTransactionUnsupported

func CypherTransactionsQueryInTransactionUnsupported(query string) Message

func CypherTransactionsQueryTypeUnsupported

func CypherTransactionsQueryTypeUnsupported(queryType string) Message

func CypherTransactionsReturnClauseNotFound

func CypherTransactionsReturnClauseNotFound(query string) Message

func CypherTransactionsRollbackFailed

func CypherTransactionsRollbackFailed(cause error) Message

func CypherTransactionsShowInTransactionUnsupported

func CypherTransactionsShowInTransactionUnsupported(query string) Message

func CypherTransactionsStartFailed

func CypherTransactionsStartFailed(cause error) Message

func CypherTransactionsStorageFailed

func CypherTransactionsStorageFailed(cause error) Message

func CypherTransactionsSyntaxStartInvalid

func CypherTransactionsSyntaxStartInvalid() Message

func CypherTransactionsSyntaxUnbalancedAt

func CypherTransactionsSyntaxUnbalancedAt(position int) Message

func CypherTransactionsSyntaxUnbalancedCurlyBraces

func CypherTransactionsSyntaxUnbalancedCurlyBraces() Message

func CypherTransactionsSyntaxUnbalancedParentheses

func CypherTransactionsSyntaxUnbalancedParentheses() Message

func CypherTransactionsSyntaxUnbalancedSquareBrackets

func CypherTransactionsSyntaxUnbalancedSquareBrackets() Message

func CypherTransactionsSyntaxUnclosedQuote

func CypherTransactionsSyntaxUnclosedQuote() Message

func CypherTransactionsUnknownType

func CypherTransactionsUnknownType() Message

func CypherTransactionsUnwindASRequired

func CypherTransactionsUnwindASRequired() Message

func CypherTransactionsWALBeginFailed

func CypherTransactionsWALBeginFailed(cause error) Message

func DatabaseAccessDenied

func DatabaseAccessDenied(name string) Message

DatabaseAccessDenied identifies an authorization failure for a database.

func DatabaseAllowlistUnavailable

func DatabaseAllowlistUnavailable() Message

func DatabaseConfigUnavailable

func DatabaseConfigUnavailable() Message

DatabaseConfigUnavailable identifies an unavailable per-database configuration store.

func DatabaseManagerUnavailable

func DatabaseManagerUnavailable() Message

DatabaseManagerUnavailable identifies an unavailable database manager.

func DatabaseNameRequired

func DatabaseNameRequired() Message

func DatabaseNotFound

func DatabaseNotFound(name string) Message

DatabaseNotFound identifies a requested database that does not exist.

func DatabasePrivilegesUnavailable

func DatabasePrivilegesUnavailable() Message

func DatabaseWriteDenied

func DatabaseWriteDenied(name string) Message

DatabaseWriteDenied identifies an authorization failure for writing to a database.

func DeleteRequired

func DeleteRequired() Message

DeleteRequired identifies an endpoint that only accepts DELETE requests.

func DiffGraphNodeLimitExceeded

func DiffGraphNodeLimitExceeded(maximum int) Message

func DisallowedOrUnknownConfigKey

func DisallowedOrUnknownConfigKey(key string) Message

DisallowedOrUnknownConfigKey identifies a configuration key outside the allowlist.

func EmbeddingRegenerationStarted

func EmbeddingRegenerationStarted() Message

func EmbeddingWorkerAlreadyRunning

func EmbeddingWorkerAlreadyRunning() Message

func EmbeddingWorkerTriggered

func EmbeddingWorkerTriggered() Message

func ExternalDiagnostic

func ExternalDiagnostic(cause error) Message

ExternalDiagnostic preserves diagnostic text that is outside localization ownership.

func GDPRConfirmationRequired

func GDPRConfirmationRequired() Message

GDPRConfirmationRequired identifies an unconfirmed destructive request.

func GDPRLegalHoldPreventsDeletion

func GDPRLegalHoldPreventsDeletion() Message

GDPRLegalHoldPreventsDeletion identifies data protected by a legal hold.

func GDPROwnDataDeleteOnly

func GDPROwnDataDeleteOnly() Message

GDPROwnDataDeleteOnly identifies an attempt to delete another user's data.

func GDPROwnDataExportOnly

func GDPROwnDataExportOnly() Message

GDPROwnDataExportOnly identifies an attempt to export another user's data.

func GPUAccelerationDisabled

func GPUAccelerationDisabled() Message

func GPUAccelerationEnabled

func GPUAccelerationEnabled() Message

func GPUManagerNotInitialized

func GPUManagerNotInitialized() Message

GPUManagerNotInitialized identifies an unavailable GPU manager.

func GPUUnavailable

func GPUUnavailable(cause error) Message

func GRPCLocalizationInitializationFailed

func GRPCLocalizationInitializationFailed(cause error) Message

GRPCLocalizationInitializationFailed identifies localization bootstrap failure for a gRPC service.

func GetOrPostRequired

func GetOrPostRequired() Message

GetOrPostRequired identifies an endpoint that accepts GET or POST requests.

func GetOrPutRequired

func GetOrPutRequired() Message

GetOrPutRequired identifies an endpoint that accepts GET or PUT requests.

func GetPutOrDeleteRequired

func GetPutOrDeleteRequired() Message

GetPutOrDeleteRequired identifies an endpoint that accepts GET, PUT, or DELETE requests.

func GetRequired

func GetRequired() Message

GetRequired identifies an endpoint that only accepts GET requests.

func GraphDatabaseAccessDenied

func GraphDatabaseAccessDenied() Message

GraphDatabaseAccessDenied identifies denied access where the database name must not be disclosed.

func HTTPDatabaseNotFound

func HTTPDatabaseNotFound(name string) Message

HTTPDatabaseNotFound identifies the legacy HTTP/Neo4j database lookup response.

func HTTPNotAuthenticated

func HTTPNotAuthenticated() Message

HTTPNotAuthenticated identifies an unauthenticated HTTP request.

func HeimdallAutocompleteFailed

func HeimdallAutocompleteFailed(cause error) Message

HeimdallAutocompleteFailed identifies an autocomplete operation failure.

func HeimdallBifrostNotEnabled

func HeimdallBifrostNotEnabled() Message

HeimdallBifrostNotEnabled identifies an unavailable Bifrost event service.

func HeimdallDisabled

func HeimdallDisabled() Message

func HeimdallGenerationFailed

func HeimdallGenerationFailed(cause error) Message

HeimdallGenerationFailed identifies a response generation failure.

func HeimdallInitializing

func HeimdallInitializing() Message

func HeimdallInvalidRequestBody

func HeimdallInvalidRequestBody() Message

HeimdallInvalidRequestBody identifies a malformed Heimdall request body.

func HeimdallLogOperator

func HeimdallLogOperator(message string) Message

HeimdallLogOperator preserves dynamically formatted Heimdall operator prose.

func HeimdallLogToolCall

func HeimdallLogToolCall(requestID, action string, params any) Message

HeimdallLogToolCall describes an agent tool invocation.

func HeimdallMethodNotAllowed

func HeimdallMethodNotAllowed() Message

HeimdallMethodNotAllowed identifies an unsupported Heimdall HTTP method.

func HeimdallQueryParameterRequired

func HeimdallQueryParameterRequired() Message

HeimdallQueryParameterRequired identifies a missing autocomplete query.

func HeimdallStreamingNotSupported

func HeimdallStreamingNotSupported() Message

HeimdallStreamingNotSupported identifies a response writer without streaming support.

func HistoricalNeighborhoodRoute

func HistoricalNeighborhoodRoute() Message

HistoricalNeighborhoodRoute identifies the supported endpoints for historical neighborhood traversal.

func HistoricalPathRoute

func HistoricalPathRoute() Message

HistoricalPathRoute identifies the supported endpoint for historical path reconstruction.

func InferenceLogEdgeDecayStarted

func InferenceLogEdgeDecayStarted(decayRate, minConfidence float64, scanInterval, gracePeriod time.Duration) Message

InferenceLogEdgeDecayStarted describes edge-decay worker startup.

func InferenceLogHeimdallBatchError

func InferenceLogHeimdallBatchError(err error) Message

InferenceLogHeimdallBatchError describes a fail-open quality-control batch error.

func InferenceLogOperator

func InferenceLogOperator(message string) Message

InferenceLogOperator preserves dynamically formatted inference operator prose.

func InsufficientPermissions

func InsufficientPermissions() Message

InsufficientPermissions identifies a request lacking required permissions.

func InternalServerError

func InternalServerError() Message

InternalServerError identifies an unexpected HTTP server failure.

func InvalidAuthorizationToken

func InvalidAuthorizationToken(cause error) Message

InvalidAuthorizationToken identifies an Authorization token rejected by validation.

func InvalidExpiresIn

func InvalidExpiresIn() Message

InvalidExpiresIn identifies an invalid API token expires_in value.

func InvalidExpiresInWithHelp

func InvalidExpiresInWithHelp() Message

InvalidExpiresInWithHelp identifies an invalid expires_in value with accepted examples.

func InvalidGPUManagerType

func InvalidGPUManagerType() Message

InvalidGPUManagerType identifies an incompatible GPU manager implementation.

func InvalidHeader

func InvalidHeader(name string, cause error) Message

InvalidHeader identifies a request header rejected by security validation.

func InvalidInterval

func InvalidInterval() Message

InvalidInterval identifies a malformed lifecycle interval.

func InvalidJSONBody

func InvalidJSONBody() Message

InvalidJSONBody identifies malformed JSON in a request body.

func InvalidLimit

func InvalidLimit() Message

InvalidLimit identifies a malformed result limit.

func InvalidRequestBody

func InvalidRequestBody() Message

InvalidRequestBody identifies the common malformed-request response.

func InvalidTokenParameter

func InvalidTokenParameter(cause error) Message

InvalidTokenParameter identifies a query token rejected by validation.

func InvalidURLParameter

func InvalidURLParameter(name string, cause error) Message

InvalidURLParameter identifies a URL-valued query parameter rejected by validation.

func ItemsProcessed

func ItemsProcessed(count int) Message

ItemsProcessed demonstrates locale-aware plural selection.

func LanguagePackMissing

func LanguagePackMissing(requested, resolved, source string) Message

LanguagePackMissing reports a requested language without an installed pack.

func LogoutComplete

func LogoutComplete() Message

LogoutComplete identifies a completed HTTP logout operation.

func MCPAuthenticationContextMissing

func MCPAuthenticationContextMissing() Message

func MCPAuthenticationRequired

func MCPAuthenticationRequired() Message

func MCPAuthenticatorNotConfigured

func MCPAuthenticatorNotConfigured() Message

func MCPCreateEdgeFailed

func MCPCreateEdgeFailed(cause error) Message

func MCPCreateTaskFailed

func MCPCreateTaskFailed(cause error) Message

func MCPCypherExecutorNil

func MCPCypherExecutorNil() Message

func MCPCypherExecutorUnavailable

func MCPCypherExecutorUnavailable() Message

func MCPDatabaseExecutorUnavailable

func MCPDatabaseExecutorUnavailable(database string) Message

func MCPDeleteTaskFailed

func MCPDeleteTaskFailed(cause error) Message

func MCPDependencyCreateFailed

func MCPDependencyCreateFailed(id string, cause error) Message

func MCPEmbeddingDimensionsInvalid

func MCPEmbeddingDimensionsInvalid(expected, got int, model string) Message

func MCPEmbeddingElementInvalid

func MCPEmbeddingElementInvalid(index int, value any) Message

func MCPEmbeddingEmpty

func MCPEmbeddingEmpty() Message

func MCPEmbeddingTypeInvalid

func MCPEmbeddingTypeInvalid(value any) Message

func MCPFetchUpdatedTaskFailed

func MCPFetchUpdatedTaskFailed(cause error) Message

func MCPFieldRequired

func MCPFieldRequired(field string) Message

func MCPIDRequiredForDelete

func MCPIDRequiredForDelete() Message

func MCPInvalidLabel

func MCPInvalidLabel(label string) Message

func MCPInvalidOrExpiredToken

func MCPInvalidOrExpiredToken() Message

func MCPInvalidRelation

func MCPInvalidRelation(relation string) Message

func MCPInvalidRequestBody

func MCPInvalidRequestBody() Message

func MCPLinkInvalidEdgeID

func MCPLinkInvalidEdgeID() Message

func MCPLinkNoEdgeID

func MCPLinkNoEdgeID() Message

func MCPListTasksFailed

func MCPListTasksFailed(cause error) Message

func MCPMethodNotFound

func MCPMethodNotFound() Message

MCPMethodNotFound identifies an unsupported JSON-RPC method.

func MCPNodeNotFound

func MCPNodeNotFound(id string) Message

func MCPParseError

func MCPParseError() Message

MCPParseError identifies an invalid JSON-RPC request document.

func MCPRateLimitExceeded

func MCPRateLimitExceeded(limit int, period string) Message

func MCPRecallFailed

func MCPRecallFailed(cause error) Message

func MCPServerAlreadyClosed

func MCPServerAlreadyClosed() Message

func MCPSourceNodeNotFound

func MCPSourceNodeNotFound(id string) Message

func MCPStoreInvalidNodeID

func MCPStoreInvalidNodeID() Message

func MCPStoreNoExecutor

func MCPStoreNoExecutor() Message

func MCPStoreNoNodeID

func MCPStoreNoNodeID() Message

func MCPStoreNodeFailed

func MCPStoreNodeFailed(cause error) Message

func MCPTargetNodeNotFound

func MCPTargetNodeNotFound(id string) Message

func MCPTaskCreateInvalidID

func MCPTaskCreateInvalidID() Message

func MCPTaskCreateNoID

func MCPTaskCreateNoID() Message

func MCPTaskNotFound

func MCPTaskNotFound(id string) Message

func MCPTitleRequiredForNewTasks

func MCPTitleRequiredForNewTasks() Message

func MCPToolExecutionFailed

func MCPToolExecutionFailed() Message

MCPToolExecutionFailed identifies a failed MCP tool invocation.

func MCPToolPermissionDenied

func MCPToolPermissionDenied(roles any, tool string) Message

func MCPUnknownRole

func MCPUnknownRole(role string) Message

func MCPUnknownTool

func MCPUnknownTool(name string) Message

func MCPUpdateTaskFailed

func MCPUpdateTaskFailed(cause error) Message

func MVCCCompositeUnsupported

func MVCCCompositeUnsupported() Message

MVCCCompositeUnsupported identifies MVCC lifecycle controls on a composite database.

func MVCCDebtUnsupported

func MVCCDebtUnsupported() Message

MVCCDebtUnsupported identifies unavailable lifecycle debt inspection.

func MVCCLifecyclePaused

func MVCCLifecyclePaused() Message

MVCCLifecyclePaused identifies a paused MVCC lifecycle.

func MVCCLifecycleResumed

func MVCCLifecycleResumed() Message

MVCCLifecycleResumed identifies a resumed MVCC lifecycle.

func MVCCPruneTriggered

func MVCCPruneTriggered() Message

MVCCPruneTriggered identifies an accepted manual MVCC prune request.

func MVCCScheduleUnsupported

func MVCCScheduleUnsupported() Message

MVCCScheduleUnsupported identifies unavailable lifecycle schedule control.

func MethodNotAllowed

func MethodNotAllowed() Message

MethodNotAllowed identifies a request using an unsupported HTTP method.

func MissingAuthorizationCode

func MissingAuthorizationCode() Message

MissingAuthorizationCode identifies an OAuth callback without a code.

func MissingStateParameter

func MissingStateParameter() Message

MissingStateParameter identifies an OAuth callback without state.

func MultidbAccessModeInvalid

func MultidbAccessModeInvalid() Message

func MultidbCompositeAliasExists

func MultidbCompositeAliasExists(alias string) Message

func MultidbCompositeAliasNotFound

func MultidbCompositeAliasNotFound(alias string) Message

func MultidbCompositeConstituentDatabaseNotFound

func MultidbCompositeConstituentDatabaseNotFound(database string, cause error) Message

func MultidbCompositeDatabaseAsConstituent

func MultidbCompositeDatabaseAsConstituent(database string) Message

func MultidbCompositeDatabaseNotComposite

func MultidbCompositeDatabaseNotComposite(database string) Message

func MultidbCompositeDuplicateAlias

func MultidbCompositeDuplicateAlias(alias string) Message

func MultidbCompositePersistMetadataAfterDropFailed

func MultidbCompositePersistMetadataAfterDropFailed(cause error) Message

func MultidbCompositeSecureRemoteCredentialsFailed

func MultidbCompositeSecureRemoteCredentialsFailed(alias string, cause error) Message

func MultidbConstituentAliasRequired

func MultidbConstituentAliasRequired() Message

func MultidbConstituentDatabaseRequired

func MultidbConstituentDatabaseRequired() Message

func MultidbConstituentTypeInvalid

func MultidbConstituentTypeInvalid() Message

func MultidbCredentialDecryptKeyRequired

func MultidbCredentialDecryptKeyRequired() Message

func MultidbCredentialFormatInvalid

func MultidbCredentialFormatInvalid() Message

func MultidbCredentialKeyConfigurationRequired

func MultidbCredentialKeyConfigurationRequired() Message

func MultidbCredentialPayloadTruncated

func MultidbCredentialPayloadTruncated() Message

func MultidbInvalidConstituent

func MultidbInvalidConstituent(index int, cause error) Message

func MultidbManagerAliasContainsWhitespace

func MultidbManagerAliasContainsWhitespace(alias string, cause error) Message

func MultidbManagerAliasReserved

func MultidbManagerAliasReserved(alias string, cause error) Message

func MultidbManagerDeleteDatabaseDataFailed

func MultidbManagerDeleteDatabaseDataFailed(cause error) Message

func MultidbManagerGetConstituentStorageFailed

func MultidbManagerGetConstituentStorageFailed(database string, cause error) Message

func MultidbManagerGetRemoteStorageFailed

func MultidbManagerGetRemoteStorageFailed(alias string, cause error) Message

func MultidbManagerInvalidStatus

func MultidbManagerInvalidStatus(status string) Message

func MultidbManagerRemoteEngineFactoryNotConfigured

func MultidbManagerRemoteEngineFactoryNotConfigured(alias string) Message

func MultidbManagerRemoteEngineFactoryReturnedNil

func MultidbManagerRemoteEngineFactoryReturnedNil(alias string) Message

func MultidbManagerResolveRemoteCredentialsFailed

func MultidbManagerResolveRemoteCredentialsFailed(alias string, cause error) Message

func MultidbMaxBytesExceeded

func MultidbMaxBytesExceeded(name string, current, limit, entitySize int64) Message

func MultidbMaxConcurrentQueriesReached

func MultidbMaxConcurrentQueriesReached(name string, current, limit int) Message

func MultidbMaxConnectionsReached

func MultidbMaxConnectionsReached(name string, current, limit int) Message

func MultidbMaxEdgesReached

func MultidbMaxEdgesReached(name string, current, limit int64) Message

func MultidbMaxNodesReached

func MultidbMaxNodesReached(name string, current, limit int64) Message

func MultidbMetadataParseFailed

func MultidbMetadataParseFailed(cause error) Message

func MultidbMetadataSerializeFailed

func MultidbMetadataSerializeFailed(cause error) Message

func MultidbOIDCCredentialsForbidden

func MultidbOIDCCredentialsForbidden() Message

func MultidbQueryRateExceeded

func MultidbQueryRateExceeded(name string, limit int) Message

func MultidbRemoteAuthModeInvalid

func MultidbRemoteAuthModeInvalid() Message

func MultidbRemotePasswordEmpty

func MultidbRemotePasswordEmpty() Message

func MultidbRemotePasswordRequired

func MultidbRemotePasswordRequired() Message

func MultidbRemoteURIRequired

func MultidbRemoteURIRequired() Message

func MultidbRemoteUserRequired

func MultidbRemoteUserRequired() Message

func MultidbStorageCalculateEdgeSizeFailed

func MultidbStorageCalculateEdgeSizeFailed(cause error) Message

func MultidbStorageCalculateNodeSizeFailed

func MultidbStorageCalculateNodeSizeFailed(cause error) Message

func MultidbStorageEncodeEdgeFailed

func MultidbStorageEncodeEdgeFailed(cause error) Message

func MultidbStorageEncodeNodeFailed

func MultidbStorageEncodeNodeFailed(cause error) Message

func MultidbStorageGetAllEdgesFailed

func MultidbStorageGetAllEdgesFailed(cause error) Message

func MultidbStorageGetAllEdgesForSizeCalculationFailed

func MultidbStorageGetAllEdgesForSizeCalculationFailed(cause error) Message

func MultidbStorageGetAllNodesFailed

func MultidbStorageGetAllNodesFailed(cause error) Message

func MultidbStorageGetAllNodesForSizeCalculationFailed

func MultidbStorageGetAllNodesForSizeCalculationFailed(cause error) Message

func MultidbStorageGetEdgeCountFailed

func MultidbStorageGetEdgeCountFailed(cause error) Message

func MultidbStorageGetIncomingEdgesFailed

func MultidbStorageGetIncomingEdgesFailed(cause error) Message

func MultidbStorageGetNodeCountFailed

func MultidbStorageGetNodeCountFailed(cause error) Message

func MultidbStorageGetOutgoingEdgesFailed

func MultidbStorageGetOutgoingEdgesFailed(cause error) Message

func MultidbStorageGetSizeFailed

func MultidbStorageGetSizeFailed(cause error) Message

func MultidbStoredPasswordMissing

func MultidbStoredPasswordMissing() Message

func MultidbWriteRateExceeded

func MultidbWriteRateExceeded(name string, limit int) Message

func NewRoleNameAlreadyExists

func NewRoleNameAlreadyExists() Message

func NoAuthenticationProvided

func NoAuthenticationProvided() Message

NoAuthenticationProvided identifies a request without credentials.

func NoUserContext

func NoUserContext() Message

NoUserContext identifies an authenticated endpoint without principal context.

func NodeHasNoEmbedding

func NodeHasNoEmbedding() Message

NodeHasNoEmbedding identifies a vector-similarity target without an embedding.

func NornicDBCLIAdminCreated

func NornicDBCLIAdminCreated(username string) Message

func NornicDBCLIAdminSetupFailed

func NornicDBCLIAdminSetupFailed() Message

func NornicDBCLIAuthentication

func NornicDBCLIAuthentication(username string) Message

func NornicDBCLIBoltAdapterFailed

func NornicDBCLIBoltAdapterFailed(cause error) Message

func NornicDBCLIBoltEndpoint

func NornicDBCLIBoltEndpoint(port int) Message

func NornicDBCLIBoltTLSClientAuthFailed

func NornicDBCLIBoltTLSClientAuthFailed(cause error) Message

func NornicDBCLIBoltTLSLoadFailed

func NornicDBCLIBoltTLSLoadFailed(cause error) Message

func NornicDBCLIBuildCUDA

func NornicDBCLIBuildCUDA() Message

func NornicDBCLIConfigLoadFailed

func NornicDBCLIConfigLoadFailed(path string, cause error) Message

func NornicDBCLIConfigLoaded

func NornicDBCLIConfigLoaded(path string) Message

func NornicDBCLIConfigWarning

func NornicDBCLIConfigWarning(path string, cause error) Message

func NornicDBCLIConfiguredJWT

func NornicDBCLIConfiguredJWT(bytes int) Message

func NornicDBCLICreateAuthenticatorFailed

func NornicDBCLICreateAuthenticatorFailed(cause error) Message

func NornicDBCLICreateDataDirectoryFailed

func NornicDBCLICreateDataDirectoryFailed(cause error) Message

func NornicDBCLICreateDirectoryFailed

func NornicDBCLICreateDirectoryFailed(path string, cause error) Message

func NornicDBCLICreateServerFailed

func NornicDBCLICreateServerFailed(cause error) Message

func NornicDBCLIDataDirectory

func NornicDBCLIDataDirectory(path string) Message

func NornicDBCLIDatabaseNotInitialized

func NornicDBCLIDatabaseNotInitialized() Message

func NornicDBCLIDecayOpening

func NornicDBCLIDecayOpening(path string) Message

func NornicDBCLIDecayShort

func NornicDBCLIDecayShort() Message

func NornicDBCLIDecayStatsShort

func NornicDBCLIDecayStatsShort() Message

func NornicDBCLIDecayStatsStorage

func NornicDBCLIDecayStatsStorage() Message

func NornicDBCLIDecayStatsSummary

func NornicDBCLIDecayStatsSummary(total, suppressed, scored, noDecay int, average string) Message

func NornicDBCLIDecaySuppressShort

func NornicDBCLIDecaySuppressShort() Message

func NornicDBCLIDecaySuppressStorage

func NornicDBCLIDecaySuppressStorage() Message

func NornicDBCLIDecaySuppressSummary

func NornicDBCLIDecaySuppressSummary(newly, already, above, total int) Message

func NornicDBCLIDecaySuppressWarning

func NornicDBCLIDecaySuppressWarning(node string, cause error) Message

func NornicDBCLIDecaySuppressing

func NornicDBCLIDecaySuppressing(threshold float64, count int) Message

func NornicDBCLIDefaultPasswordWarning

func NornicDBCLIDefaultPasswordWarning() Message

func NornicDBCLIEmbeddingLocal

func NornicDBCLIEmbeddingLocal(path, model string, dimensions int, gpu string) Message

func NornicDBCLIEmbeddingModel

func NornicDBCLIEmbeddingModel(model string, dimensions int) Message

func NornicDBCLIEmbeddingURL

func NornicDBCLIEmbeddingURL(url string) Message

func NornicDBCLIEmbeddingsDisabled

func NornicDBCLIEmbeddingsDisabled() Message

func NornicDBCLIEmbeddingsEnabled

func NornicDBCLIEmbeddingsEnabled(provider, model string, dimensions int) Message

func NornicDBCLIEndpoints

func NornicDBCLIEndpoints(address string, httpPort, boltPort int, metrics, pprof, mcp string, hasPprof bool) Message

func NornicDBCLIFlagAddress

func NornicDBCLIFlagAddress() Message

func NornicDBCLIFlagAdminPassword

func NornicDBCLIFlagAdminPassword() Message

func NornicDBCLIFlagBasePath

func NornicDBCLIFlagBasePath() Message

func NornicDBCLIFlagBoltPort

func NornicDBCLIFlagBoltPort() Message

func NornicDBCLIFlagClusterAdvertiseAddress

func NornicDBCLIFlagClusterAdvertiseAddress() Message

func NornicDBCLIFlagClusterBindAddress

func NornicDBCLIFlagClusterBindAddress() Message

func NornicDBCLIFlagClusterDataDir

func NornicDBCLIFlagClusterDataDir() Message

func NornicDBCLIFlagClusterHAPeerAddress

func NornicDBCLIFlagClusterHAPeerAddress() Message

func NornicDBCLIFlagClusterHARole

func NornicDBCLIFlagClusterHARole() Message

func NornicDBCLIFlagClusterMode

func NornicDBCLIFlagClusterMode() Message

func NornicDBCLIFlagClusterNodeID

func NornicDBCLIFlagClusterNodeID() Message

func NornicDBCLIFlagClusterRaftBootstrap

func NornicDBCLIFlagClusterRaftBootstrap() Message

func NornicDBCLIFlagClusterRaftPeers

func NornicDBCLIFlagClusterRaftPeers() Message

func NornicDBCLIFlagConfig

func NornicDBCLIFlagConfig() Message

func NornicDBCLIFlagDataDir

func NornicDBCLIFlagDataDir() Message

func NornicDBCLIFlagDecayThreshold

func NornicDBCLIFlagDecayThreshold() Message

func NornicDBCLIFlagEmbeddingCache

func NornicDBCLIFlagEmbeddingCache() Message

func NornicDBCLIFlagEmbeddingDimensions

func NornicDBCLIFlagEmbeddingDimensions() Message

func NornicDBCLIFlagEmbeddingEnabled

func NornicDBCLIFlagEmbeddingEnabled() Message

func NornicDBCLIFlagEmbeddingGPULayers

func NornicDBCLIFlagEmbeddingGPULayers() Message

func NornicDBCLIFlagEmbeddingKey

func NornicDBCLIFlagEmbeddingKey() Message

func NornicDBCLIFlagEmbeddingModel

func NornicDBCLIFlagEmbeddingModel() Message

func NornicDBCLIFlagEmbeddingProvider

func NornicDBCLIFlagEmbeddingProvider() Message

func NornicDBCLIFlagEmbeddingURL

func NornicDBCLIFlagEmbeddingURL() Message

func NornicDBCLIFlagGCPercent

func NornicDBCLIFlagGCPercent() Message

func NornicDBCLIFlagGPUBackend

func NornicDBCLIFlagGPUBackend() Message

func NornicDBCLIFlagHTTPPort

func NornicDBCLIFlagHTTPPort() Message

func NornicDBCLIFlagHeadless

func NornicDBCLIFlagHeadless() Message

func NornicDBCLIFlagLogQueries

func NornicDBCLIFlagLogQueries() Message

func NornicDBCLIFlagLowMemory

func NornicDBCLIFlagLowMemory() Message

func NornicDBCLIFlagMCPEnabled

func NornicDBCLIFlagMCPEnabled() Message

func NornicDBCLIFlagMemoryLimit

func NornicDBCLIFlagMemoryLimit() Message

func NornicDBCLIFlagNoAuth

func NornicDBCLIFlagNoAuth() Message

func NornicDBCLIFlagParallel

func NornicDBCLIFlagParallel() Message

func NornicDBCLIFlagParallelBatchSize

func NornicDBCLIFlagParallelBatchSize() Message

func NornicDBCLIFlagParallelWorkers

func NornicDBCLIFlagParallelWorkers() Message

func NornicDBCLIFlagPoolEnabled

func NornicDBCLIFlagPoolEnabled() Message

func NornicDBCLIFlagQueryCacheSize

func NornicDBCLIFlagQueryCacheSize() Message

func NornicDBCLIFlagQueryCacheTTL

func NornicDBCLIFlagQueryCacheTTL() Message

func NornicDBCLIFlagSearchBM25Enabled

func NornicDBCLIFlagSearchBM25Enabled() Message

func NornicDBCLIFlagSearchBM25Warming

func NornicDBCLIFlagSearchBM25Warming() Message

func NornicDBCLIFlagSearchVectorEnabled

func NornicDBCLIFlagSearchVectorEnabled() Message

func NornicDBCLIFlagSearchVectorWarming

func NornicDBCLIFlagSearchVectorWarming() Message

func NornicDBCLIFlagStdioLogCompactSeconds

func NornicDBCLIFlagStdioLogCompactSeconds() Message

func NornicDBCLIFlagStdioLogMaxKB

func NornicDBCLIFlagStdioLogMaxKB() Message

func NornicDBCLIFlagURI

func NornicDBCLIFlagURI() Message

func NornicDBCLIFlagUpgradeStorage

func NornicDBCLIFlagUpgradeStorage() Message

func NornicDBCLIGCPercent

func NornicDBCLIGCPercent(value int) Message

func NornicDBCLIGPUDetectedNoCUDA

func NornicDBCLIGPUDetectedNoCUDA(name string, memory int) Message

func NornicDBCLIGPUDisabled

func NornicDBCLIGPUDisabled() Message

func NornicDBCLIGPUEnabled

func NornicDBCLIGPUEnabled(name, backend string, memory int) Message

func NornicDBCLIGPUUnavailable

func NornicDBCLIGPUUnavailable(cause error) Message

func NornicDBCLIHTTPEndpoint

func NornicDBCLIHTTPEndpoint(port int) Message

func NornicDBCLIInitProgress

func NornicDBCLIInitProgress(path string) Message

func NornicDBCLIInitShort

func NornicDBCLIInitShort() Message

func NornicDBCLIInitSummary

func NornicDBCLIInitSummary(config, data string) Message

func NornicDBCLIInitializingGPU

func NornicDBCLIInitializingGPU() Message

func NornicDBCLIInvalidMemoryLimit

func NornicDBCLIInvalidMemoryLimit(value string, cause error) Message

NornicDBCLIInvalidMemoryLimit identifies an invalid memory-limit flag value.

func NornicDBCLIInvalidStdioInterval

func NornicDBCLIInvalidStdioInterval(value int) Message

func NornicDBCLILoadNodesFailed

func NornicDBCLILoadNodesFailed(cause error) Message

func NornicDBCLILocalizationInitFailed

func NornicDBCLILocalizationInitFailed(cause error) Message

func NornicDBCLIMemoryLimit

func NornicDBCLIMemoryLimit(value string) Message

func NornicDBCLIMemoryUnlimited

func NornicDBCLIMemoryUnlimited() Message

func NornicDBCLINoConfig

func NornicDBCLINoConfig() Message

func NornicDBCLINoJWT

func NornicDBCLINoJWT() Message

func NornicDBCLIObjectPooling

func NornicDBCLIObjectPooling() Message

func NornicDBCLIObservabilityInitFailed

func NornicDBCLIObservabilityInitFailed(cause error) Message

func NornicDBCLIOpenDatabaseFailed

func NornicDBCLIOpenDatabaseFailed(cause error) Message

func NornicDBCLIOpeningDatabase

func NornicDBCLIOpeningDatabase() Message

func NornicDBCLIParallelDisabled

func NornicDBCLIParallelDisabled() Message

func NornicDBCLIParallelEnabled

func NornicDBCLIParallelEnabled(workers, batch int) Message

func NornicDBCLIPerLabelBreakdown

func NornicDBCLIPerLabelBreakdown() Message

func NornicDBCLIPerLabelRow

func NornicDBCLIPerLabelRow(label string, count, eligible int) Message

func NornicDBCLIPprofListenerFailed

func NornicDBCLIPprofListenerFailed(cause error) Message

func NornicDBCLIPressToStop

func NornicDBCLIPressToStop() Message

func NornicDBCLIQueryCache

func NornicDBCLIQueryCache(size int, ttl any) Message

func NornicDBCLIReadInputFailed

func NornicDBCLIReadInputFailed(cause error) Message

func NornicDBCLIReady

func NornicDBCLIReady() Message

func NornicDBCLIRootLong

func NornicDBCLIRootLong() Message

func NornicDBCLIRootShort

func NornicDBCLIRootShort() Message

func NornicDBCLIScoreDistribution

func NornicDBCLIScoreDistribution() Message

func NornicDBCLIServeLong

func NornicDBCLIServeLong() Message

func NornicDBCLIServeShort

func NornicDBCLIServeShort() Message

func NornicDBCLIServerStopped

func NornicDBCLIServerStopped() Message

func NornicDBCLISettingUpAuth

func NornicDBCLISettingUpAuth() Message

func NornicDBCLIShellGoodbye

func NornicDBCLIShellGoodbye() Message

func NornicDBCLIShellIntro

func NornicDBCLIShellIntro() Message

func NornicDBCLIShellOpening

func NornicDBCLIShellOpening(path string) Message

func NornicDBCLIShellQueryFailed

func NornicDBCLIShellQueryFailed() Message

func NornicDBCLIShellQuerySucceeded

func NornicDBCLIShellQuerySucceeded() Message

func NornicDBCLIShellRows

func NornicDBCLIShellRows(count int) Message

func NornicDBCLIShellShort

func NornicDBCLIShellShort() Message

func NornicDBCLIShellUnavailable

func NornicDBCLIShellUnavailable() Message

func NornicDBCLIStartServerFailed

func NornicDBCLIStartServerFailed(cause error) Message

func NornicDBCLIStarting

func NornicDBCLIStarting(version string) Message

func NornicDBCLISupervisedRunFailed

func NornicDBCLISupervisedRunFailed(cause error) Message

func NornicDBCLITelemetryListenerFailed

func NornicDBCLITelemetryListenerFailed(cause error) Message

func NornicDBCLITransactionAlreadyActive

func NornicDBCLITransactionAlreadyActive() Message

func NornicDBCLITransactionNotFound

func NornicDBCLITransactionNotFound() Message

func NornicDBCLIVersionShort

func NornicDBCLIVersionShort() Message

func NornicDBCLIWriteConfigFailed

func NornicDBCLIWriteConfigFailed(cause error) Message

func NornicDBCoreAutoEmbedNotEnabled

func NornicDBCoreAutoEmbedNotEnabled() Message

NornicDBCoreAutoEmbedNotEnabled identifies an unavailable automatic embedding worker.

func NornicDBCoreBackupEdgesReadFailed

func NornicDBCoreBackupEdgesReadFailed(cause error) Message

NornicDBCoreBackupEdgesReadFailed identifies a backup edge-read failure.

func NornicDBCoreBackupMarshalFailed

func NornicDBCoreBackupMarshalFailed(cause error) Message

NornicDBCoreBackupMarshalFailed identifies backup serialization failure.

func NornicDBCoreBackupNodesReadFailed

func NornicDBCoreBackupNodesReadFailed(cause error) Message

NornicDBCoreBackupNodesReadFailed identifies a backup node-read failure.

func NornicDBCoreBackupParseFailed

func NornicDBCoreBackupParseFailed(cause error) Message

NornicDBCoreBackupParseFailed identifies backup deserialization failure.

func NornicDBCoreBackupReadFailed

func NornicDBCoreBackupReadFailed(cause error) Message

NornicDBCoreBackupReadFailed identifies backup file read failure.

func NornicDBCoreBackupWriteFailed

func NornicDBCoreBackupWriteFailed(cause error) Message

NornicDBCoreBackupWriteFailed identifies backup persistence failure.

func NornicDBCoreBootstrapDDLCommandUnsupported

func NornicDBCoreBootstrapDDLCommandUnsupported(command any) Message

NornicDBCoreBootstrapDDLCommandUnsupported identifies an unsupported parsed bootstrap command.

func NornicDBCoreBootstrapDDLExpected

func NornicDBCoreBootstrapDDLExpected() Message

NornicDBCoreBootstrapDDLExpected identifies a non-policy statement in the bootstrap set.

func NornicDBCoreBootstrapKnowledgePolicyFailed

func NornicDBCoreBootstrapKnowledgePolicyFailed(namespace string, cause error) Message

NornicDBCoreBootstrapKnowledgePolicyFailed identifies default policy bootstrap failure.

func NornicDBCoreClearEmbeddingsUnsupported

func NornicDBCoreClearEmbeddingsUnsupported() Message

NornicDBCoreClearEmbeddingsUnsupported identifies an unsupported storage operation.

func NornicDBCoreCloseFailed

func NornicDBCoreCloseFailed(details string) Message

NornicDBCoreCloseFailed identifies one or more database shutdown failures.

func NornicDBCoreConsentCheckFailed

func NornicDBCoreConsentCheckFailed(cause error) Message

NornicDBCoreConsentCheckFailed identifies consent lookup failure.

func NornicDBCoreConsentExistingCheckFailed

func NornicDBCoreConsentExistingCheckFailed(cause error) Message

NornicDBCoreConsentExistingCheckFailed identifies failure checking an existing consent record.

func NornicDBCoreConsentGetFailed

func NornicDBCoreConsentGetFailed(cause error) Message

NornicDBCoreConsentGetFailed identifies consent retrieval failure.

func NornicDBCoreConsentPurposeRequired

func NornicDBCoreConsentPurposeRequired() Message

NornicDBCoreConsentPurposeRequired identifies missing consent purpose input.

func NornicDBCoreConsentStreamFailed

func NornicDBCoreConsentStreamFailed(cause error) Message

NornicDBCoreConsentStreamFailed identifies consent stream failure.

func NornicDBCoreConsentUserIDRequired

func NornicDBCoreConsentUserIDRequired() Message

NornicDBCoreConsentUserIDRequired identifies missing consent subject input.

func NornicDBCoreCypherRowDecodeFailed

func NornicDBCoreCypherRowDecodeFailed(cause error) Message

NornicDBCoreCypherRowDecodeFailed identifies typed Cypher row decoding failure.

func NornicDBCoreDataDirectoryCreateFailed

func NornicDBCoreDataDirectoryCreateFailed(cause error) Message

NornicDBCoreDataDirectoryCreateFailed identifies database directory creation failure.

func NornicDBCoreDatabaseClosed

func NornicDBCoreDatabaseClosed() Message

NornicDBCoreDatabaseClosed identifies an operation on a closed database.

func NornicDBCoreDecodeAssignmentFailed

func NornicDBCoreDecodeAssignmentFailed(value any, target any) Message

NornicDBCoreDecodeAssignmentFailed identifies an incompatible typed field assignment.

func NornicDBCoreDecodeDestinationRequired

func NornicDBCoreDecodeDestinationRequired() Message

NornicDBCoreDecodeDestinationRequired identifies an invalid typed decode destination.

func NornicDBCoreDecodeFieldFailed

func NornicDBCoreDecodeFieldFailed(field string, cause error) Message

NornicDBCoreDecodeFieldFailed identifies a field-specific typed decode failure.

func NornicDBCoreEmbedBatchFailed

func NornicDBCoreEmbedBatchFailed(start, end, total int, nodeID string, cause error) Message

NornicDBCoreEmbedBatchFailed identifies a failed embedding micro-batch.

func NornicDBCoreEmbeddingCountMismatch

func NornicDBCoreEmbeddingCountMismatch(nodeID string, actual, expected int) Message

NornicDBCoreEmbeddingCountMismatch identifies an embedding provider batch-size mismatch.

func NornicDBCoreEncryptionDEKCiphertextDecodeFailed

func NornicDBCoreEncryptionDEKCiphertextDecodeFailed(cause error) Message

NornicDBCoreEncryptionDEKCiphertextDecodeFailed identifies persisted DEK ciphertext decoding failure.

func NornicDBCoreEncryptionDEKDirectoryCreateFailed

func NornicDBCoreEncryptionDEKDirectoryCreateFailed(cause error) Message

NornicDBCoreEncryptionDEKDirectoryCreateFailed identifies DEK metadata directory creation failure.

func NornicDBCoreEncryptionDEKEmpty

func NornicDBCoreEncryptionDEKEmpty() Message

NornicDBCoreEncryptionDEKEmpty identifies a provider returning no plaintext DEK.

func NornicDBCoreEncryptionDEKGenerateFailed

func NornicDBCoreEncryptionDEKGenerateFailed(cause error) Message

NornicDBCoreEncryptionDEKGenerateFailed identifies provider-backed DEK generation failure.

func NornicDBCoreEncryptionDEKMetadataDecodeFailed

func NornicDBCoreEncryptionDEKMetadataDecodeFailed(cause error) Message

NornicDBCoreEncryptionDEKMetadataDecodeFailed identifies persisted DEK metadata decoding failure.

func NornicDBCoreEncryptionDEKMetadataEncodeFailed

func NornicDBCoreEncryptionDEKMetadataEncodeFailed(cause error) Message

NornicDBCoreEncryptionDEKMetadataEncodeFailed identifies DEK metadata encoding failure.

func NornicDBCoreEncryptionDEKMetadataPersistFailed

func NornicDBCoreEncryptionDEKMetadataPersistFailed(cause error) Message

NornicDBCoreEncryptionDEKMetadataPersistFailed identifies DEK metadata persistence failure.

func NornicDBCoreEncryptionDEKProviderMismatch

func NornicDBCoreEncryptionDEKProviderMismatch(persistedProvider, configuredProvider string) Message

NornicDBCoreEncryptionDEKProviderMismatch identifies incompatible persisted and configured providers.

func NornicDBCoreEncryptionDEKRotateFailed

func NornicDBCoreEncryptionDEKRotateFailed(cause error) Message

NornicDBCoreEncryptionDEKRotateFailed identifies wrapped DEK rotation failure.

func NornicDBCoreEncryptionDEKUnwrapFailed

func NornicDBCoreEncryptionDEKUnwrapFailed(cause error) Message

NornicDBCoreEncryptionDEKUnwrapFailed identifies persisted DEK decryption failure.

func NornicDBCoreEncryptionMasterKeyInvalid

func NornicDBCoreEncryptionMasterKeyInvalid(cause error) Message

NornicDBCoreEncryptionMasterKeyInvalid identifies invalid provider master-key input.

func NornicDBCoreEncryptionMasterKeyLengthInvalid

func NornicDBCoreEncryptionMasterKeyLengthInvalid() Message

NornicDBCoreEncryptionMasterKeyLengthInvalid identifies malformed provider master-key input.

func NornicDBCoreEncryptionMasterKeyRequired

func NornicDBCoreEncryptionMasterKeyRequired() Message

NornicDBCoreEncryptionMasterKeyRequired identifies missing provider-backed encryption key input.

func NornicDBCoreEncryptionPasswordRequired

func NornicDBCoreEncryptionPasswordRequired() Message

NornicDBCoreEncryptionPasswordRequired identifies missing password-based encryption configuration.

func NornicDBCoreEncryptionProviderInitializeFailed

func NornicDBCoreEncryptionProviderInitializeFailed(provider string, cause error) Message

NornicDBCoreEncryptionProviderInitializeFailed identifies KMS provider initialization failure.

func NornicDBCoreEncryptionSaltGenerateFailed

func NornicDBCoreEncryptionSaltGenerateFailed(cause error) Message

NornicDBCoreEncryptionSaltGenerateFailed identifies encryption salt generation failure.

func NornicDBCoreEncryptionSaltSaveFailed

func NornicDBCoreEncryptionSaltSaveFailed(cause error) Message

NornicDBCoreEncryptionSaltSaveFailed identifies encryption salt persistence failure.

func NornicDBCoreFindSimilarLimitInvalid

func NornicDBCoreFindSimilarLimitInvalid() Message

NornicDBCoreFindSimilarLimitInvalid identifies a non-positive similarity result limit.

func NornicDBCoreIndexTypeUnsupported

func NornicDBCoreIndexTypeUnsupported(indexType string) Message

NornicDBCoreIndexTypeUnsupported identifies an unsupported embedded API index type.

func NornicDBCoreInferenceBaseStorageUnavailable

func NornicDBCoreInferenceBaseStorageUnavailable() Message

NornicDBCoreInferenceBaseStorageUnavailable identifies inference initialization without base storage.

func NornicDBCoreInferenceInitializeFailed

func NornicDBCoreInferenceInitializeFailed(cause error) Message

NornicDBCoreInferenceInitializeFailed identifies inference initialization failure.

func NornicDBCoreInvalidID

func NornicDBCoreInvalidID() Message

NornicDBCoreInvalidID identifies an invalid database entity ID.

func NornicDBCoreInvalidInput

func NornicDBCoreInvalidInput() Message

NornicDBCoreInvalidInput identifies invalid embedded API input.

func NornicDBCoreNilDatabase

func NornicDBCoreNilDatabase() Message

NornicDBCoreNilDatabase identifies a nil health-check receiver.

func NornicDBCoreNodeAlreadyExists

func NornicDBCoreNodeAlreadyExists(nodeID string) Message

NornicDBCoreNodeAlreadyExists identifies a duplicate caller-provided node ID.

func NornicDBCoreNodeEmbeddingMissing

func NornicDBCoreNodeEmbeddingMissing() Message

NornicDBCoreNodeEmbeddingMissing identifies a similarity source node without an embedding.

func NornicDBCoreNodeIDRequired

func NornicDBCoreNodeIDRequired() Message

NornicDBCoreNodeIDRequired identifies an empty caller-provided node ID.

func NornicDBCoreNotFound

func NornicDBCoreNotFound() Message

NornicDBCoreNotFound identifies a missing database entity.

func NornicDBCorePersistentStorageOpenFailed

func NornicDBCorePersistentStorageOpenFailed(cause error) Message

NornicDBCorePersistentStorageOpenFailed identifies persistent storage open failure.

func NornicDBCoreQueryDimensionMismatchForDatabase

func NornicDBCoreQueryDimensionMismatchForDatabase(database string, indexDimensions, queryDimensions int) Message

NornicDBCoreQueryDimensionMismatchForDatabase identifies a database-specific dimension mismatch.

func NornicDBCoreQueryEmbeddingDimensionMismatch

func NornicDBCoreQueryEmbeddingDimensionMismatch() Message

NornicDBCoreQueryEmbeddingDimensionMismatch identifies incompatible query and index dimensions.

func NornicDBCoreReplicationReplicatorCreateFailed

func NornicDBCoreReplicationReplicatorCreateFailed(cause error) Message

NornicDBCoreReplicationReplicatorCreateFailed identifies replicator creation failure.

func NornicDBCoreReplicationStartFailed

func NornicDBCoreReplicationStartFailed(cause error) Message

NornicDBCoreReplicationStartFailed identifies replication startup failure.

func NornicDBCoreReplicationStorageAdapterCreateFailed

func NornicDBCoreReplicationStorageAdapterCreateFailed(cause error) Message

NornicDBCoreReplicationStorageAdapterCreateFailed identifies replication adapter creation failure.

func NornicDBCoreRestoreEdgeFailed

func NornicDBCoreRestoreEdgeFailed(edgeID string, cause error) Message

NornicDBCoreRestoreEdgeFailed identifies an edge restore failure.

func NornicDBCoreRestoreMVCCHeadsFailed

func NornicDBCoreRestoreMVCCHeadsFailed(cause error) Message

NornicDBCoreRestoreMVCCHeadsFailed identifies MVCC-head rebuild failure after restore.

func NornicDBCoreRestoreNodeFailed

func NornicDBCoreRestoreNodeFailed(nodeID string, cause error) Message

NornicDBCoreRestoreNodeFailed identifies a node restore failure.

func NornicDBCoreRestoreTemporalIndexesFailed

func NornicDBCoreRestoreTemporalIndexesFailed(cause error) Message

NornicDBCoreRestoreTemporalIndexesFailed identifies temporal-index rebuild failure after restore.

func NornicDBCoreSchemaManagerNotInitialized

func NornicDBCoreSchemaManagerNotInitialized() Message

NornicDBCoreSchemaManagerNotInitialized identifies unavailable schema management.

func NornicDBCoreSearchBaseStorageUnavailable

func NornicDBCoreSearchBaseStorageUnavailable() Message

NornicDBCoreSearchBaseStorageUnavailable identifies search initialization without base storage.

func NornicDBCoreSearchDatabaseNotInitialized

func NornicDBCoreSearchDatabaseNotInitialized(database string) Message

NornicDBCoreSearchDatabaseNotInitialized identifies missing per-database search state.

func NornicDBCoreSearchPersistenceDatabaseInvalid

func NornicDBCoreSearchPersistenceDatabaseInvalid(database string) Message

NornicDBCoreSearchPersistenceDatabaseInvalid identifies an unsafe search-persistence database name.

func NornicDBCoreSearchServiceNotInitialized

func NornicDBCoreSearchServiceNotInitialized() Message

NornicDBCoreSearchServiceNotInitialized identifies an unavailable default search service.

func NornicDBCoreSearchSystemDatabaseUnsupported

func NornicDBCoreSearchSystemDatabaseUnsupported() Message

NornicDBCoreSearchSystemDatabaseUnsupported identifies search requested for the system database.

func NornicDBCoreSourceNodeNotFound

func NornicDBCoreSourceNodeNotFound() Message

NornicDBCoreSourceNodeNotFound identifies a missing relationship source node.

func NornicDBCoreStorageEngineNotInitialized

func NornicDBCoreStorageEngineNotInitialized() Message

NornicDBCoreStorageEngineNotInitialized identifies an unavailable health-check storage engine.

func NornicDBCoreStorageProbeFailed

func NornicDBCoreStorageProbeFailed(cause error) Message

NornicDBCoreStorageProbeFailed identifies health-check storage probe failure.

func NornicDBCoreTargetNodeNotFound

func NornicDBCoreTargetNodeNotFound() Message

NornicDBCoreTargetNodeNotFound identifies a missing relationship target node.

func NornicDBCoreWALInitializeFailed

func NornicDBCoreWALInitializeFailed(cause error) Message

NornicDBCoreWALInitializeFailed identifies write-ahead log initialization failure.

func NornicDBRetentionSweepBudgetExhausted

func NornicDBRetentionSweepBudgetExhausted(budget int) Message

NornicDBRetentionSweepBudgetExhausted identifies a retention sweep paused at its configured record budget.

func NotAuthenticated

func NotAuthenticated() Message

NotAuthenticated identifies an unauthenticated protocol request.

func NotFound

func NotFound() Message

NotFound identifies a generic HTTP resource lookup failure.

func OAuthCallbackFailed

func OAuthCallbackFailed(providerError, description string) Message

OAuthCallbackFailed identifies an OAuth provider callback error.

func OAuthNotConfigured

func OAuthNotConfigured() Message

OAuthNotConfigured identifies an unavailable OAuth integration.

func OSLanguageUndetected

func OSLanguageUndetected() Message

OSLanguageUndetected reports that OS language detection failed.

func ObservabilityLogInstanceIDResolved

func ObservabilityLogInstanceIDResolved(instanceID, source string) Message

ObservabilityLogInstanceIDResolved describes service instance identity resolution.

func ObservabilityLogOperator

func ObservabilityLogOperator(message string) Message

ObservabilityLogOperator preserves dynamically formatted observability operator prose.

func ObservabilityLogTenantLabelsResolved

func ObservabilityLogTenantLabelsResolved() Message

ObservabilityLogTenantLabelsResolved describes tenant-label policy resolution.

func OldPasswordIncorrect

func OldPasswordIncorrect() Message

OldPasswordIncorrect identifies a rejected current password.

func PasswordChanged

func PasswordChanged() Message

PasswordChanged identifies a completed password change.

func PatchOrDeleteRequired

func PatchOrDeleteRequired() Message

func PathNodeIDsRequired

func PathNodeIDsRequired() Message

PathNodeIDsRequired identifies missing source and target node IDs.

func PostOrDeleteRequired

func PostOrDeleteRequired() Message

PostOrDeleteRequired identifies an endpoint that accepts POST or DELETE requests.

func PostRequired

func PostRequired() Message

PostRequired identifies an endpoint that only accepts POST requests.

func ProfileUpdated

func ProfileUpdated() Message

ProfileUpdated identifies a completed profile update.

func PutRequired

func PutRequired() Message

PutRequired identifies an endpoint that only accepts PUT requests.

func QdrantAuthenticationRequired

func QdrantAuthenticationRequired(cause string) Message

QdrantAuthenticationRequired identifies a missing Qdrant authentication credential.

func QdrantCollectionNameRequired

func QdrantCollectionNameRequired() Message

QdrantCollectionNameRequired identifies a missing Qdrant collection_name field.

func QdrantCollectionNotFound

func QdrantCollectionNotFound(name string) Message

QdrantCollectionNotFound identifies a missing Qdrant collection.

func QdrantCollectionNotFoundWithCause

func QdrantCollectionNotFoundWithCause(cause error) Message

QdrantCollectionNotFoundWithCause identifies a failed collection lookup with diagnostic detail.

func QdrantCollectionStoreNotConfigured

func QdrantCollectionStoreNotConfigured() Message

func QdrantCreateBackupFailed

func QdrantCreateBackupFailed(cause error) Message

func QdrantCreateCollectionFailed

func QdrantCreateCollectionFailed(cause error) Message

func QdrantCreatePointsFailed

func QdrantCreatePointsFailed(cause error) Message

func QdrantDatabaseAccessDenied

func QdrantDatabaseAccessDenied(name string) Message

QdrantDatabaseAccessDenied identifies a Qdrant database authorization failure.

func QdrantDatabaseWriteDenied

func QdrantDatabaseWriteDenied(name string) Message

QdrantDatabaseWriteDenied identifies a Qdrant database write authorization failure.

func QdrantDeleteCollectionFailed

func QdrantDeleteCollectionFailed(cause error) Message

func QdrantEmbedQueryFailed

func QdrantEmbedQueryFailed(cause error) Message

QdrantEmbedQueryFailed identifies a query embedding failure.

func QdrantFieldRequired

func QdrantFieldRequired(field string) Message

QdrantFieldRequired identifies a missing Qdrant request field.

func QdrantFieldsRequired

func QdrantFieldsRequired(fields string) Message

QdrantFieldsRequired identifies missing plural Qdrant request fields or values.

func QdrantFullSnapshotsRequireBaseStorage

func QdrantFullSnapshotsRequireBaseStorage() Message

func QdrantGetCollectionPointsFailed

func QdrantGetCollectionPointsFailed(cause error) Message

func QdrantGetEdgesFailed

func QdrantGetEdgesFailed(cause error) Message

func QdrantGetNodesFailed

func QdrantGetNodesFailed(cause error) Message

func QdrantGetPointsFailed

func QdrantGetPointsFailed(cause error) Message

QdrantGetPointsFailed identifies a storage failure while retrieving points.

func QdrantHNSWEfTooLarge

func QdrantHNSWEfTooLarge() Message

func QdrantIndexPointFailed

func QdrantIndexPointFailed(pointID string, cause error) Message

func QdrantInvalidOrExpiredToken

func QdrantInvalidOrExpiredToken() Message

QdrantInvalidOrExpiredToken identifies a rejected Qdrant bearer token.

func QdrantInvalidPointsSelector

func QdrantInvalidPointsSelector() Message

func QdrantInvalidVectorsConfig

func QdrantInvalidVectorsConfig() Message

func QdrantLimitTooLarge

func QdrantLimitTooLarge(limit uint64, maximum int) Message

QdrantLimitTooLarge identifies a result limit above the configured maximum.

func QdrantListCollectionsFailed

func QdrantListCollectionsFailed(cause error) Message

func QdrantMissingVectorForPoint

func QdrantMissingVectorForPoint(name, pointID string) Message

func QdrantNegativeAverageFailed

func QdrantNegativeAverageFailed() Message

func QdrantOffsetTooLarge

func QdrantOffsetTooLarge() Message

func QdrantPermissionDenied

func QdrantPermissionDenied() Message

QdrantPermissionDenied identifies a Qdrant method authorization failure.

func QdrantPointIDAndVectorsRequired

func QdrantPointIDAndVectorsRequired() Message

func QdrantPointNotFoundWithCause

func QdrantPointNotFoundWithCause(cause error) Message

func QdrantPositiveAverageFailed

func QdrantPositiveAverageFailed() Message

func QdrantPositiveExampleRequired

func QdrantPositiveExampleRequired() Message

func QdrantQueryVariantMissing

func QdrantQueryVariantMissing() Message

func QdrantQueryVariantUnsupported

func QdrantQueryVariantUnsupported(variant any) Message

func QdrantReadExistingPointsFailed

func QdrantReadExistingPointsFailed(cause error) Message

func QdrantRecommendationDimensionMismatch

func QdrantRecommendationDimensionMismatch(positive, negative int) Message

func QdrantScanPointsFailed

func QdrantScanPointsFailed(cause error) Message

func QdrantSnapshotDeleteFailed

func QdrantSnapshotDeleteFailed(cause error) Message

QdrantSnapshotDeleteFailed identifies a snapshot deletion failure.

func QdrantSnapshotDirectoryCreateFailed

func QdrantSnapshotDirectoryCreateFailed(cause error) Message

QdrantSnapshotDirectoryCreateFailed identifies a snapshot-directory creation failure.

func QdrantSnapshotListFailed

func QdrantSnapshotListFailed(cause error) Message

QdrantSnapshotListFailed identifies a snapshot listing failure.

func QdrantSnapshotNotFound

func QdrantSnapshotNotFound(name string) Message

QdrantSnapshotNotFound identifies a missing Qdrant snapshot.

func QdrantSnapshotSaveFailed

func QdrantSnapshotSaveFailed(cause error) Message

QdrantSnapshotSaveFailed identifies a snapshot persistence failure.

func QdrantTextQueryEmbeddingsRequired

func QdrantTextQueryEmbeddingsRequired() Message

QdrantTextQueryEmbeddingsRequired identifies text querying without an embedder.

func QdrantTooManyPoints

func QdrantTooManyPoints(count, maximum int) Message

func QdrantUnsupportedVectorKind

func QdrantUnsupportedVectorKind() Message

func QdrantUnsupportedVectorsType

func QdrantUnsupportedVectorsType() Message

func QdrantUpdatePointFailed

func QdrantUpdatePointFailed(pointID string, cause error) Message

func QdrantVectorDimensionMismatch

func QdrantVectorDimensionMismatch(got, expected int) Message

QdrantVectorDimensionMismatch identifies a vector with an unexpected dimension.

func QdrantVectorInputVariantUnsupported

func QdrantVectorInputVariantUnsupported(variant any) Message

func QdrantVectorMutationsDisabled

func QdrantVectorMutationsDisabled() Message

QdrantVectorMutationsDisabled identifies a mutation blocked by managed embeddings.

func QdrantVectorNotFoundForPoint

func QdrantVectorNotFoundForPoint() Message

func QdrantVectorSizeMustBePositive

func QdrantVectorSizeMustBePositive() Message

func QueryChunkFailed

func QueryChunkFailed(cause error) Message

QueryChunkFailed identifies query chunking failure.

func QueryChunkingFailed

func QueryChunkingFailed() Message

QueryChunkingFailed identifies a query that could not be chunked.

func QueryRequired

func QueryRequired() Message

QueryRequired identifies a missing search query.

func ReadPermissionRequired

func ReadPermissionRequired() Message

ReadPermissionRequired identifies missing read permission.

func ReplicationClosed

func ReplicationClosed() Message

ReplicationClosed identifies an operation on a closed replicator.

func ReplicationConfigHAPeerAddressRequired

func ReplicationConfigHAPeerAddressRequired() Message

ReplicationConfigHAPeerAddressRequired identifies a missing HA peer address setting.

func ReplicationConfigHARoleRequired

func ReplicationConfigHARoleRequired() Message

ReplicationConfigHARoleRequired identifies a missing HA role setting.

func ReplicationConfigInvalidCrossRegionSyncMode

func ReplicationConfigInvalidCrossRegionSyncMode(mode string) Message

ReplicationConfigInvalidCrossRegionSyncMode identifies an unsupported cross-region mode.

func ReplicationConfigInvalidHARole

func ReplicationConfigInvalidHARole(role string) Message

ReplicationConfigInvalidHARole identifies an unsupported HA role.

func ReplicationConfigInvalidHASyncMode

func ReplicationConfigInvalidHASyncMode(mode string) Message

ReplicationConfigInvalidHASyncMode identifies an unsupported HA synchronization mode.

func ReplicationConfigInvalidTLSMinVersion

func ReplicationConfigInvalidTLSMinVersion(version string) Message

ReplicationConfigInvalidTLSMinVersion identifies an unsupported TLS minimum version.

func ReplicationConfigNodeIDRequired

func ReplicationConfigNodeIDRequired() Message

ReplicationConfigNodeIDRequired identifies a missing node identifier.

func ReplicationConfigRaftPeersRequired

func ReplicationConfigRaftPeersRequired() Message

ReplicationConfigRaftPeersRequired identifies missing Raft peer/bootstrap settings.

func ReplicationConfigRegionIDRequired

func ReplicationConfigRegionIDRequired() Message

ReplicationConfigRegionIDRequired identifies a missing multi-region identifier.

func ReplicationConfigSecretTooShort

func ReplicationConfigSecretTooShort(minLength int) Message

ReplicationConfigSecretTooShort identifies a replication secret below the minimum length.

func ReplicationConfigTLSCARequired

func ReplicationConfigTLSCARequired() Message

ReplicationConfigTLSCARequired identifies a missing client-verification CA setting.

func ReplicationConfigTLSCertRequired

func ReplicationConfigTLSCertRequired() Message

ReplicationConfigTLSCertRequired identifies a missing TLS certificate setting.

func ReplicationConfigTLSKeyRequired

func ReplicationConfigTLSKeyRequired() Message

ReplicationConfigTLSKeyRequired identifies a missing TLS key setting.

func ReplicationConfigUnknownMode

func ReplicationConfigUnknownMode(mode any) Message

ReplicationConfigUnknownMode identifies an unsupported replication mode.

func ReplicationEngineEdgeRequired

func ReplicationEngineEdgeRequired() Message

ReplicationEngineEdgeRequired identifies a nil edge write.

func ReplicationEngineEncodeBulkCreateEdgesFailed

func ReplicationEngineEncodeBulkCreateEdgesFailed(cause error) Message

ReplicationEngineEncodeBulkCreateEdgesFailed identifies bulk edge-create encoding failure.

func ReplicationEngineEncodeBulkCreateNodesFailed

func ReplicationEngineEncodeBulkCreateNodesFailed(cause error) Message

ReplicationEngineEncodeBulkCreateNodesFailed identifies bulk node-create encoding failure.

func ReplicationEngineEncodeBulkDeleteEdgesFailed

func ReplicationEngineEncodeBulkDeleteEdgesFailed(cause error) Message

ReplicationEngineEncodeBulkDeleteEdgesFailed identifies bulk edge-delete encoding failure.

func ReplicationEngineEncodeBulkDeleteNodesFailed

func ReplicationEngineEncodeBulkDeleteNodesFailed(cause error) Message

ReplicationEngineEncodeBulkDeleteNodesFailed identifies bulk node-delete encoding failure.

func ReplicationEngineEncodeDeleteEdgeFailed

func ReplicationEngineEncodeDeleteEdgeFailed(cause error) Message

ReplicationEngineEncodeDeleteEdgeFailed identifies delete-edge request encoding failure.

func ReplicationEngineEncodeDeletePrefixFailed

func ReplicationEngineEncodeDeletePrefixFailed(cause error) Message

ReplicationEngineEncodeDeletePrefixFailed identifies prefix-delete encoding failure.

func ReplicationEngineEncodeEdgeFailed

func ReplicationEngineEncodeEdgeFailed(cause error) Message

ReplicationEngineEncodeEdgeFailed identifies edge encoding failure.

func ReplicationEngineEncodeNodeFailed

func ReplicationEngineEncodeNodeFailed(cause error) Message

ReplicationEngineEncodeNodeFailed identifies node encoding failure.

func ReplicationEngineNodeRequired

func ReplicationEngineNodeRequired() Message

ReplicationEngineNodeRequired identifies a nil node write.

func ReplicationHAAckTimedOut

func ReplicationHAAckTimedOut(mode string, target uint64, cause error) Message

ReplicationHAAckTimedOut identifies a standby acknowledgement timeout.

func ReplicationHAFlushWALFailed

func ReplicationHAFlushWALFailed(cause error) Message

ReplicationHAFlushWALFailed identifies a failed WAL flush during promotion.

func ReplicationHAInitTransportFailed

func ReplicationHAInitTransportFailed(cause error) Message

ReplicationHAInitTransportFailed identifies HA transport initialization failure.

func ReplicationHAPrimaryCannotReceiveWAL

func ReplicationHAPrimaryCannotReceiveWAL() Message

ReplicationHAPrimaryCannotReceiveWAL identifies a WAL batch sent to a primary.

func ReplicationHAStartPrimaryFailed

func ReplicationHAStartPrimaryFailed(cause error) Message

ReplicationHAStartPrimaryFailed identifies HA primary startup failure.

func ReplicationHAStartStandbyFailed

func ReplicationHAStartStandbyFailed(cause error) Message

ReplicationHAStartStandbyFailed identifies HA standby startup failure.

func ReplicationLogOperator

func ReplicationLogOperator(message string) Message

ReplicationLogOperator preserves dynamically formatted replication operator prose.

func ReplicationLogRaftBecameLeader

func ReplicationLogRaftBecameLeader(nodeID string, term uint64) Message

ReplicationLogRaftBecameLeader describes a Raft leader transition.

func ReplicationNoLeader

func ReplicationNoLeader() Message

ReplicationNoLeader identifies a cluster without an available leader.

func ReplicationNotLeader

func ReplicationNotLeader() Message

ReplicationNotLeader identifies a write rejected by a non-leader node.

func ReplicationNotReady

func ReplicationNotReady() Message

ReplicationNotReady identifies an operation attempted before initialization finishes.

func ReplicationOperationTimedOut

func ReplicationOperationTimedOut() Message

ReplicationOperationTimedOut identifies a generic replication timeout.

func ReplicationRPCAuthenticationFieldsMissing

func ReplicationRPCAuthenticationFieldsMissing() Message

ReplicationRPCAuthenticationFieldsMissing identifies an unsigned or incomplete authenticated message.

func ReplicationRPCCommandRequired

func ReplicationRPCCommandRequired() Message

ReplicationRPCCommandRequired identifies a missing forwarded command.

func ReplicationRPCConnectionClosed

func ReplicationRPCConnectionClosed() Message

ReplicationRPCConnectionClosed identifies a connection closed while awaiting an RPC response.

func ReplicationRPCDecodeFailed

func ReplicationRPCDecodeFailed(operation string, cause error) Message

ReplicationRPCDecodeFailed identifies RPC payload decoding failure.

func ReplicationRPCEncodeFailed

func ReplicationRPCEncodeFailed(operation string, cause error) Message

ReplicationRPCEncodeFailed identifies RPC payload encoding failure.

func ReplicationRPCInvalidSignature

func ReplicationRPCInvalidSignature() Message

ReplicationRPCInvalidSignature identifies a failed message signature check.

func ReplicationRPCMessageTooLarge

func ReplicationRPCMessageTooLarge(actual uint32, maximum int) Message

ReplicationRPCMessageTooLarge identifies a wire message exceeding the configured limit.

func ReplicationRPCNotConnected

func ReplicationRPCNotConnected() Message

ReplicationRPCNotConnected identifies an RPC attempted without a peer connection.

func ReplicationRPCReadFailed

func ReplicationRPCReadFailed(cause error) Message

ReplicationRPCReadFailed carries a wire-read cause without changing its source text.

func ReplicationRPCRemoteApplyFailed

func ReplicationRPCRemoteApplyFailed(diagnostic string) Message

ReplicationRPCRemoteApplyFailed carries a remote application diagnostic received over the wire.

func ReplicationRPCTimestampOutsideAllowedSkew

func ReplicationRPCTimestampOutsideAllowedSkew() Message

ReplicationRPCTimestampOutsideAllowedSkew identifies a stale or future authenticated message.

func ReplicationRPCWriteFailed

func ReplicationRPCWriteFailed(cause error) Message

ReplicationRPCWriteFailed identifies a failed RPC wire write.

func ReplicationRaftAppendRequestRequired

func ReplicationRaftAppendRequestRequired() Message

ReplicationRaftAppendRequestRequired identifies a nil append-entries request.

func ReplicationRaftApplyQueueFull

func ReplicationRaftApplyQueueFull() Message

ReplicationRaftApplyQueueFull identifies an apply queue admission timeout.

func ReplicationRaftApplyTimedOut

func ReplicationRaftApplyTimedOut() Message

ReplicationRaftApplyTimedOut identifies an apply completion timeout.

func ReplicationRaftCommitTimedOut

func ReplicationRaftCommitTimedOut(timeout time.Duration) Message

ReplicationRaftCommitTimedOut identifies a log entry commit timeout.

func ReplicationRaftConnectPeerFailed

func ReplicationRaftConnectPeerFailed(address string, cause error) Message

ReplicationRaftConnectPeerFailed identifies a failed peer connection.

func ReplicationRaftForwardToLeaderFailed

func ReplicationRaftForwardToLeaderFailed(cause error) Message

ReplicationRaftForwardToLeaderFailed identifies a failed forwarded write.

func ReplicationRaftInitTransportFailed

func ReplicationRaftInitTransportFailed(cause error) Message

ReplicationRaftInitTransportFailed identifies Raft transport initialization failure.

func ReplicationRaftSendAppendFailed

func ReplicationRaftSendAppendFailed(cause error) Message

ReplicationRaftSendAppendFailed identifies a failed append-entries RPC.

func ReplicationRaftSendVoteFailed

func ReplicationRaftSendVoteFailed(cause error) Message

ReplicationRaftSendVoteFailed identifies a failed vote RPC.

func ReplicationRaftTransportNotConfigured

func ReplicationRaftTransportNotConfigured() Message

ReplicationRaftTransportNotConfigured identifies missing Raft transport configuration.

func ReplicationRaftVoteRequestRequired

func ReplicationRaftVoteRequestRequired() Message

ReplicationRaftVoteRequestRequired identifies a nil vote request.

func ReplicationStandbyMode

func ReplicationStandbyMode() Message

ReplicationStandbyMode identifies a write attempted on a standby node.

func ReplicationStorageCommandRequired

func ReplicationStorageCommandRequired() Message

ReplicationStorageCommandRequired identifies a nil replication command.

func ReplicationStorageCypherQueryEmpty

func ReplicationStorageCypherQueryEmpty() Message

ReplicationStorageCypherQueryEmpty identifies an empty replicated Cypher query.

func ReplicationStorageCypherUnavailable

func ReplicationStorageCypherUnavailable() Message

ReplicationStorageCypherUnavailable identifies missing Cypher execution support.

func ReplicationStorageDecodeBatchFailed

func ReplicationStorageDecodeBatchFailed(cause error) Message

ReplicationStorageDecodeBatchFailed identifies batch payload decoding failure.

func ReplicationStorageDecodeBulkCreateEdgesFailed

func ReplicationStorageDecodeBulkCreateEdgesFailed(cause error) Message

ReplicationStorageDecodeBulkCreateEdgesFailed identifies bulk edge-create payload decoding failure.

func ReplicationStorageDecodeBulkCreateNodesFailed

func ReplicationStorageDecodeBulkCreateNodesFailed(cause error) Message

ReplicationStorageDecodeBulkCreateNodesFailed identifies bulk node-create payload decoding failure.

func ReplicationStorageDecodeBulkDeleteEdgesFailed

func ReplicationStorageDecodeBulkDeleteEdgesFailed(cause error) Message

ReplicationStorageDecodeBulkDeleteEdgesFailed identifies bulk edge-delete payload decoding failure.

func ReplicationStorageDecodeBulkDeleteNodesFailed

func ReplicationStorageDecodeBulkDeleteNodesFailed(cause error) Message

ReplicationStorageDecodeBulkDeleteNodesFailed identifies bulk node-delete payload decoding failure.

func ReplicationStorageDecodeCypherFailed

func ReplicationStorageDecodeCypherFailed(cause error) Message

ReplicationStorageDecodeCypherFailed identifies Cypher command decoding failure.

func ReplicationStorageDecodeDeleteEdgeFailed

func ReplicationStorageDecodeDeleteEdgeFailed(cause error) Message

ReplicationStorageDecodeDeleteEdgeFailed identifies delete-edge payload decoding failure.

func ReplicationStorageDecodeDeletePrefixFailed

func ReplicationStorageDecodeDeletePrefixFailed(cause error) Message

ReplicationStorageDecodeDeletePrefixFailed identifies prefix-delete payload decoding failure.

func ReplicationStorageDecodeEdgeFailed

func ReplicationStorageDecodeEdgeFailed(cause error) Message

ReplicationStorageDecodeEdgeFailed identifies edge payload decoding failure.

func ReplicationStorageDecodeNodeFailed

func ReplicationStorageDecodeNodeFailed(cause error) Message

ReplicationStorageDecodeNodeFailed identifies node payload decoding failure.

func ReplicationStorageDecodeSetPropertyFailed

func ReplicationStorageDecodeSetPropertyFailed(cause error) Message

ReplicationStorageDecodeSetPropertyFailed identifies set-property payload decoding failure.

func ReplicationStorageDecodeSnapshotFailed

func ReplicationStorageDecodeSnapshotFailed(cause error) Message

ReplicationStorageDecodeSnapshotFailed identifies snapshot decoding failure.

func ReplicationStorageEncodeSnapshotFailed

func ReplicationStorageEncodeSnapshotFailed(cause error) Message

ReplicationStorageEncodeSnapshotFailed identifies snapshot encoding failure.

func ReplicationStorageExecuteCypherFailed

func ReplicationStorageExecuteCypherFailed(cause error) Message

ReplicationStorageExecuteCypherFailed identifies replicated Cypher execution failure.

func ReplicationStorageFlushWALFailed

func ReplicationStorageFlushWALFailed(cause error) Message

ReplicationStorageFlushWALFailed identifies storage adapter WAL flush failure.

func ReplicationStorageGetAllEdgesFailed

func ReplicationStorageGetAllEdgesFailed(cause error) Message

ReplicationStorageGetAllEdgesFailed identifies snapshot edge enumeration failure.

func ReplicationStorageGetAllNodesFailed

func ReplicationStorageGetAllNodesFailed(cause error) Message

ReplicationStorageGetAllNodesFailed identifies snapshot node enumeration failure.

func ReplicationStoragePrefixRequired

func ReplicationStoragePrefixRequired() Message

ReplicationStoragePrefixRequired identifies a missing deletion prefix.

func ReplicationStorageReadSnapshotFailed

func ReplicationStorageReadSnapshotFailed(cause error) Message

ReplicationStorageReadSnapshotFailed identifies snapshot read failure.

func ReplicationStorageReadWALEntriesFailed

func ReplicationStorageReadWALEntriesFailed(cause error) Message

ReplicationStorageReadWALEntriesFailed identifies persistent WAL read failure.

func ReplicationStorageRestoreEdgeFailed

func ReplicationStorageRestoreEdgeFailed(cause error) Message

ReplicationStorageRestoreEdgeFailed identifies snapshot edge restoration failure.

func ReplicationStorageRestoreNodeFailed

func ReplicationStorageRestoreNodeFailed(cause error) Message

ReplicationStorageRestoreNodeFailed identifies snapshot node restoration failure.

func ReplicationStorageUnknownCommandType

func ReplicationStorageUnknownCommandType(commandType uint8) Message

ReplicationStorageUnknownCommandType identifies an unsupported command type.

func ReplicationStorageWALAppendFailed

func ReplicationStorageWALAppendFailed(cause error) Message

ReplicationStorageWALAppendFailed identifies WAL append failure.

func ReplicationStorageWALCreateFailed

func ReplicationStorageWALCreateFailed(cause error) Message

ReplicationStorageWALCreateFailed identifies WAL creation failure.

func ReplicationStorageWALDirectoryCreateFailed

func ReplicationStorageWALDirectoryCreateFailed(cause error) Message

ReplicationStorageWALDirectoryCreateFailed identifies WAL directory creation failure.

func ReplicationTransportClosed

func ReplicationTransportClosed() Message

ReplicationTransportClosed identifies an operation on a closed transport.

func ReplicationTransportConnectFailed

func ReplicationTransportConnectFailed(address string, cause error) Message

ReplicationTransportConnectFailed identifies a failed peer connection.

func ReplicationTransportInvalidTLSCA

func ReplicationTransportInvalidTLSCA() Message

ReplicationTransportInvalidTLSCA identifies a CA file without parseable certificates.

func ReplicationTransportListenFailed

func ReplicationTransportListenFailed(address string, cause error) Message

ReplicationTransportListenFailed identifies a failed cluster listener initialization.

func ReplicationTransportLoadTLSCertKeyFailed

func ReplicationTransportLoadTLSCertKeyFailed(cause error) Message

ReplicationTransportLoadTLSCertKeyFailed identifies a TLS identity load failure.

func ReplicationTransportReadTLSCAFailed

func ReplicationTransportReadTLSCAFailed(cause error) Message

ReplicationTransportReadTLSCAFailed identifies a TLS CA file read failure.

func ReplicationTransportUnknownTLSCipherSuite

func ReplicationTransportUnknownTLSCipherSuite(cipherSuite string) Message

ReplicationTransportUnknownTLSCipherSuite identifies an unsupported cipher suite name.

func RequestBodyReadFailed

func RequestBodyReadFailed() Message

RequestBodyReadFailed identifies an unreadable HTTP request body.

func RequestFieldRequired

func RequestFieldRequired(field string) Message

RequestFieldRequired identifies a missing HTTP request field.

func RequestRequired

func RequestRequired() Message

RequestRequired identifies a missing request payload.

func RetentionErasureIDRequired

func RetentionErasureIDRequired() Message

RetentionErasureIDRequired identifies a missing erasure-request ID.

func RetentionHoldIDRequired

func RetentionHoldIDRequired() Message

RetentionHoldIDRequired identifies a missing legal-hold ID.

func RetentionHoldReleased

func RetentionHoldReleased() Message

func RetentionManagerDisabled

func RetentionManagerDisabled() Message

RetentionManagerDisabled identifies an unavailable retention subsystem.

func RetentionPolicyDeleted

func RetentionPolicyDeleted() Message

func RetentionPolicyIDRequired

func RetentionPolicyIDRequired() Message

RetentionPolicyIDRequired identifies a missing retention policy ID.

func RetentionSweepTriggered

func RetentionSweepTriggered() Message

func RoleAlreadyExists

func RoleAlreadyExists() Message

func RoleCannotDeleteWhileInUse

func RoleCannotDeleteWhileInUse() Message

func RoleEntitlementsBodyInvalid

func RoleEntitlementsBodyInvalid() Message

func RoleEntitlementsUnavailable

func RoleEntitlementsUnavailable() Message

func RolesUnavailable

func RolesUnavailable() Message

func RolesUnavailableDetailed

func RolesUnavailableDetailed() Message

func SchemaPermissionRequired

func SchemaPermissionRequired() Message

SchemaPermissionRequired identifies missing schema permission.

func SearchCUDANotAvailable

func SearchCUDANotAvailable() Message

func SearchCandidateGenerationFailed

func SearchCandidateGenerationFailed(cause error) Message

SearchCandidateGenerationFailed identifies vector candidate generation failure.

func SearchClusterFailed

func SearchClusterFailed(cause error) Message

SearchClusterFailed identifies a cluster search failure.

func SearchClusterHNSWLookupNotConfigured

func SearchClusterHNSWLookupNotConfigured() Message

SearchClusterHNSWLookupNotConfigured identifies missing per-cluster HNSW lookup configuration.

func SearchClusterIndexNotClustered

func SearchClusterIndexNotClustered() Message

SearchClusterIndexNotClustered identifies an unavailable clustered index.

func SearchClusterQueryDimensionsMismatch

func SearchClusterQueryDimensionsMismatch(queryDimensions, indexDimensions int) Message

SearchClusterQueryDimensionsMismatch identifies incompatible query and cluster-index dimensions.

func SearchClusteringFailed

func SearchClusteringFailed(cause error) Message

SearchClusteringFailed identifies a clustering operation failure.

func SearchClusteringNotEnabled

func SearchClusteringNotEnabled() Message

SearchClusteringNotEnabled identifies a clustering request before configuration.

func SearchDimensionsMustBePositive

func SearchDimensionsMustBePositive(dimensions int) Message

SearchDimensionsMustBePositive identifies invalid vector-store dimensions.

func SearchExactScoringFailed

func SearchExactScoringFailed(cause error) Message

SearchExactScoringFailed identifies vector exact-scoring failure.

func SearchFailed

func SearchFailed(cause error) Message

SearchFailed identifies search execution failure.

func SearchGPUAcceleratorUnavailable

func SearchGPUAcceleratorUnavailable() Message

func SearchGPUEmbeddingUnavailable

func SearchGPUEmbeddingUnavailable() Message

SearchGPUEmbeddingUnavailable identifies an unavailable GPU embedding index.

func SearchGPUKMeansClusteredIndexRequired

func SearchGPUKMeansClusteredIndexRequired() Message

SearchGPUKMeansClusteredIndexRequired identifies an unavailable clustered index for GPU k-means routing.

func SearchGPUNotEnabled

func SearchGPUNotEnabled() Message

func SearchHNSWGPUBuildDimensionInvalid

func SearchHNSWGPUBuildDimensionInvalid(dimensions int) Message

func SearchHNSWIndexCreationFailed

func SearchHNSWIndexCreationFailed(cause error) Message

SearchHNSWIndexCreationFailed identifies an HNSW index initialization failure.

func SearchIVFCoarseTrainingFailed

func SearchIVFCoarseTrainingFailed(cause error) Message

func SearchIVFPQDimensionsInvalid

func SearchIVFPQDimensionsInvalid() Message

func SearchIVFPQIndexNotConfigured

func SearchIVFPQIndexNotConfigured() Message

SearchIVFPQIndexNotConfigured identifies a missing IVF/PQ index.

func SearchIVFPQSegmentsInvalid

func SearchIVFPQSegmentsInvalid(dimensions, segments int) Message

func SearchIVFPQTrainingVectorsInsufficient

func SearchIVFPQTrainingVectorsInsufficient(vectorCount, listCount int) Message

func SearchIVFPQVectorStoreRequired

func SearchIVFPQVectorStoreRequired() Message

func SearchIVFPQVectorStoreUnavailable

func SearchIVFPQVectorStoreUnavailable() Message

func SearchIndexBuilding

func SearchIndexBuilding() Message

SearchIndexBuilding identifies a temporarily unavailable search index.

func SearchLogBM25EngineSelected

func SearchLogBM25EngineSelected(engine string) Message

SearchLogBM25EngineSelected describes BM25 engine selection.

func SearchLogOperator

func SearchLogOperator(message string) Message

SearchLogOperator preserves dynamically formatted operator prose.

func SearchNoClusters

func SearchNoClusters() Message

SearchNoClusters identifies an empty clustering result.

func SearchNodeNotFound

func SearchNodeNotFound(id string) Message

func SearchPQCodebookTrainingFailed

func SearchPQCodebookTrainingFailed(cause error) Message

func SearchQueryEmbeddingRequired

func SearchQueryEmbeddingRequired() Message

SearchQueryEmbeddingRequired identifies a vector query without an embedding.

func SearchRerankAPIStatus

func SearchRerankAPIStatus(status int) Message

SearchRerankAPIStatus identifies a non-success rerank API response status.

func SearchRerankRequestCreationFailed

func SearchRerankRequestCreationFailed(cause error) Message

SearchRerankRequestCreationFailed identifies rerank HTTP request construction failure.

func SearchRerankRequestFailed

func SearchRerankRequestFailed(cause error) Message

SearchRerankRequestFailed identifies rerank HTTP request execution failure.

func SearchRerankRequestMarshalFailed

func SearchRerankRequestMarshalFailed(cause error) Message

SearchRerankRequestMarshalFailed identifies rerank request serialization failure.

func SearchRerankResponseParseFailed

func SearchRerankResponseParseFailed(cause error) Message

SearchRerankResponseParseFailed identifies rerank response decoding failure.

func SearchRerankResponseUnrecognized

func SearchRerankResponseUnrecognized() Message

SearchRerankResponseUnrecognized identifies an unsupported rerank response shape.

func SearchServiceUnavailable

func SearchServiceUnavailable() Message

SearchServiceUnavailable identifies an unavailable search service.

func SearchVectorDimensionsInvalid

func SearchVectorDimensionsInvalid() Message

func SearchVectorEmbeddingRequired

func SearchVectorEmbeddingRequired() Message

SearchVectorEmbeddingRequired identifies vector search without an embedding.

func SearchVectorFileDimensionsMismatch

func SearchVectorFileDimensionsMismatch(fileDimensions, storeDimensions int) Message

func SearchVectorFileMagicInvalid

func SearchVectorFileMagicInvalid() Message

func SearchVectorFileVersionUnsupported

func SearchVectorFileVersionUnsupported(version byte) Message

func SearchVectorIndexNil

func SearchVectorIndexNil() Message

SearchVectorIndexNil identifies missing vector-index state during HNSW initialization.

func SearchVectorIndexUnavailable

func SearchVectorIndexUnavailable() Message

SearchVectorIndexUnavailable identifies an unavailable vector index.

func SearchVectorMetaDimensionsMismatch

func SearchVectorMetaDimensionsMismatch(metaDimensions, storeDimensions int) Message

func SearchVectorPipelineFailed

func SearchVectorPipelineFailed(cause error) Message

SearchVectorPipelineFailed identifies vector pipeline initialization failure.

func SearchVulkanDeviceNotInitialized

func SearchVulkanDeviceNotInitialized() Message

func SearchVulkanNotAvailable

func SearchVulkanNotAvailable() Message

func SearcherRequired

func SearcherRequired() Message

SearcherRequired identifies missing search-service configuration.

func ServerLogAPOCPluginsLoadFailed

func ServerLogAPOCPluginsLoadFailed() Message

ServerLogAPOCPluginsLoadFailed describes an APOC plugin load failure.

func ServerLogAPOCPluginsLoading

func ServerLogAPOCPluginsLoading() Message

ServerLogAPOCPluginsLoading describes an APOC plugin load attempt.

func ServerLogAuthTrace

func ServerLogAuthTrace() Message

ServerLogAuthTrace describes an authentication trace message.

func ServerLogAuthenticationDisabled

func ServerLogAuthenticationDisabled() Message

ServerLogAuthenticationDisabled describes startup without authentication.

func ServerLogCreateDatabaseDefensiveFix

func ServerLogCreateDatabaseDefensiveFix() Message

ServerLogCreateDatabaseDefensiveFix describes repaired empty CREATE DATABASE output.

func ServerLogDBConfigRebuildStartFailed

func ServerLogDBConfigRebuildStartFailed() Message

ServerLogDBConfigRebuildStartFailed describes a search rebuild start failure.

func ServerLogDBConfigRebuildStorageResolveFailed

func ServerLogDBConfigRebuildStorageResolveFailed() Message

ServerLogDBConfigRebuildStorageResolveFailed describes a rebuild storage lookup failure.

func ServerLogDBConfigReloadFailed

func ServerLogDBConfigReloadFailed() Message

ServerLogDBConfigReloadFailed describes a post-update config reload failure.

func ServerLogDatabaseConfigStoreLoadFailed

func ServerLogDatabaseConfigStoreLoadFailed() Message

ServerLogDatabaseConfigStoreLoadFailed describes a per-database config store load failure.

func ServerLogEmbedClearFailed

func ServerLogEmbedClearFailed() Message

ServerLogEmbedClearFailed describes a failure clearing embeddings.

func ServerLogEmbedCleared

func ServerLogEmbedCleared() Message

ServerLogEmbedCleared describes cleared embeddings before regeneration.

func ServerLogEmbedRegenerationAborted

func ServerLogEmbedRegenerationAborted() Message

ServerLogEmbedRegenerationAborted describes interrupted embedding regeneration.

func ServerLogEmbedRegenerationSkippedDBClosing

func ServerLogEmbedRegenerationSkippedDBClosing() Message

ServerLogEmbedRegenerationSkippedDBClosing describes regeneration skipped during shutdown.

func ServerLogEmbedRegenerationStarting

func ServerLogEmbedRegenerationStarting() Message

ServerLogEmbedRegenerationStarting describes the start of embedding regeneration.

func ServerLogEmbedWorkerResetFailed

func ServerLogEmbedWorkerResetFailed() Message

ServerLogEmbedWorkerResetFailed describes a failed embedding worker reset.

func ServerLogEmbedWorkerTriggerFailed

func ServerLogEmbedWorkerTriggerFailed() Message

ServerLogEmbedWorkerTriggerFailed describes a failed embedding worker trigger.

func ServerLogEmbedWorkerTriggered

func ServerLogEmbedWorkerTriggered() Message

ServerLogEmbedWorkerTriggered describes a successful embedding worker trigger.

func ServerLogEmbeddingCacheEnabled

func ServerLogEmbeddingCacheEnabled() Message

ServerLogEmbeddingCacheEnabled describes enabled embedding caching.

func ServerLogEmbeddingInitializationAttemptFailed

func ServerLogEmbeddingInitializationAttemptFailed() Message

ServerLogEmbeddingInitializationAttemptFailed describes a failed embedding initialization attempt.

func ServerLogEmbeddingInitializationRetryInterrupted

func ServerLogEmbeddingInitializationRetryInterrupted() Message

ServerLogEmbeddingInitializationRetryInterrupted describes a shutdown-interrupted retry.

func ServerLogEmbeddingInitializationRetrying

func ServerLogEmbeddingInitializationRetrying() Message

ServerLogEmbeddingInitializationRetrying describes an exponential-backoff retry.

func ServerLogEmbeddingModelLoading

func ServerLogEmbeddingModelLoading() Message

ServerLogEmbeddingModelLoading describes asynchronous embedding initialization.

func ServerLogEmbeddingRetryIntervalCapped

func ServerLogEmbeddingRetryIntervalCapped() Message

ServerLogEmbeddingRetryIntervalCapped describes transition to periodic retries.

func ServerLogEmbeddingRetryLoopStopped

func ServerLogEmbeddingRetryLoopStopped() Message

ServerLogEmbeddingRetryLoopStopped describes retry-loop termination during shutdown.

func ServerLogEmbeddingsReady

func ServerLogEmbeddingsReady() Message

ServerLogEmbeddingsReady describes a ready embedding provider.

func ServerLogGraphQLEnabled

func ServerLogGraphQLEnabled() Message

ServerLogGraphQLEnabled describes successful GraphQL route registration.

func ServerLogGraphQLRequest

func ServerLogGraphQLRequest() Message

ServerLogGraphQLRequest describes an enabled GraphQL request trace.

func ServerLogHTTP2Enabled

func ServerLogHTTP2Enabled() Message

ServerLogHTTP2Enabled describes the configured HTTP/2 transport mode.

func ServerLogHTTPPanicRecovered

func ServerLogHTTPPanicRecovered() Message

ServerLogHTTPPanicRecovered describes a recovered HTTP panic message.

func ServerLogHTTPPanicStackTrace

func ServerLogHTTPPanicStackTrace() Message

ServerLogHTTPPanicStackTrace describes an HTTP panic stack trace message.

func ServerLogHTTPRequest

func ServerLogHTTPRequest() Message

ServerLogHTTPRequest describes a completed HTTP request message.

func ServerLogHTTPServeFailed

func ServerLogHTTPServeFailed() Message

ServerLogHTTPServeFailed describes an unexpected HTTP serving failure.

func ServerLogHeimdallActionRegistered

func ServerLogHeimdallActionRegistered() Message

ServerLogHeimdallActionRegistered describes a registered Heimdall action.

func ServerLogHeimdallDisabled

func ServerLogHeimdallDisabled() Message

ServerLogHeimdallDisabled describes startup with Heimdall disabled.

func ServerLogHeimdallInitializationFailed

func ServerLogHeimdallInitializationFailed() Message

ServerLogHeimdallInitializationFailed describes a Heimdall initialization failure.

func ServerLogHeimdallInitializing

func ServerLogHeimdallInitializing() Message

ServerLogHeimdallInitializing describes asynchronous Heimdall initialization startup.

func ServerLogHeimdallPluginsDirectoryDuplicate

func ServerLogHeimdallPluginsDirectoryDuplicate() Message

ServerLogHeimdallPluginsDirectoryDuplicate describes duplicate plugin directories.

func ServerLogHeimdallPluginsDirectoryEmpty

func ServerLogHeimdallPluginsDirectoryEmpty() Message

ServerLogHeimdallPluginsDirectoryEmpty describes an unset Heimdall plugin directory.

func ServerLogHeimdallPluginsLoadFailed

func ServerLogHeimdallPluginsLoadFailed() Message

ServerLogHeimdallPluginsLoadFailed describes a Heimdall plugin load failure.

func ServerLogHeimdallPluginsLoading

func ServerLogHeimdallPluginsLoading() Message

ServerLogHeimdallPluginsLoading describes a Heimdall plugin load attempt.

func ServerLogHeimdallPluginsMissing

func ServerLogHeimdallPluginsMissing() Message

ServerLogHeimdallPluginsMissing describes startup without loaded Heimdall plugins.

func ServerLogHeimdallProviderResolved

func ServerLogHeimdallProviderResolved() Message

ServerLogHeimdallProviderResolved describes the resolved Heimdall provider.

func ServerLogHeimdallReady

func ServerLogHeimdallReady() Message

ServerLogHeimdallReady describes completed Heimdall initialization.

func ServerLogMCPDisabled

func ServerLogMCPDisabled() Message

ServerLogMCPDisabled describes an MCP-disabled startup log message.

func ServerLogOAuthCallbackFailed

func ServerLogOAuthCallbackFailed() Message

ServerLogOAuthCallbackFailed describes an OAuth callback failure message.

func ServerLogOAuthRedirectStateStored

func ServerLogOAuthRedirectStateStored() Message

ServerLogOAuthRedirectStateStored describes stored OAuth redirect state.

func ServerLogOAuthUserAuthenticated

func ServerLogOAuthUserAuthenticated() Message

ServerLogOAuthUserAuthenticated describes a successful OAuth callback message.

func ServerLogQdrantGRPCEnabled

func ServerLogQdrantGRPCEnabled() Message

ServerLogQdrantGRPCEnabled describes a running Qdrant-compatible gRPC server.

func ServerLogRBACAllowlistLoadFailed

func ServerLogRBACAllowlistLoadFailed() Message

ServerLogRBACAllowlistLoadFailed describes an RBAC allowlist load failure.

func ServerLogRBACAllowlistSaveFailed

func ServerLogRBACAllowlistSaveFailed() Message

ServerLogRBACAllowlistSaveFailed describes a failed database allowlist update.

func ServerLogRBACAllowlistSeedFailed

func ServerLogRBACAllowlistSeedFailed() Message

ServerLogRBACAllowlistSeedFailed describes an RBAC allowlist seed failure.

func ServerLogRBACPrivilegesLoadFailed

func ServerLogRBACPrivilegesLoadFailed() Message

ServerLogRBACPrivilegesLoadFailed describes an RBAC privileges load failure.

func ServerLogRBACPrivilegesPutMatrixFailed

func ServerLogRBACPrivilegesPutMatrixFailed() Message

ServerLogRBACPrivilegesPutMatrixFailed describes a failed privilege matrix update.

func ServerLogRBACRoleEntitlementsLoadFailed

func ServerLogRBACRoleEntitlementsLoadFailed() Message

ServerLogRBACRoleEntitlementsLoadFailed describes an RBAC role entitlements load failure.

func ServerLogRBACRoleEntitlementsSetFailed

func ServerLogRBACRoleEntitlementsSetFailed() Message

ServerLogRBACRoleEntitlementsSetFailed describes a failed role entitlement update.

func ServerLogRBACRolesLoadFailed

func ServerLogRBACRolesLoadFailed() Message

ServerLogRBACRolesLoadFailed describes an RBAC role store load failure.

func ServerLogRateLimitEnabled

func ServerLogRateLimitEnabled() Message

ServerLogRateLimitEnabled describes enabled request rate limiting.

func ServerLogRemoteCredentialKeyFallback

func ServerLogRemoteCredentialKeyFallback() Message

ServerLogRemoteCredentialKeyFallback describes a credential key reuse warning.

func ServerLogRetentionDefaultPolicyAddFailed

func ServerLogRetentionDefaultPolicyAddFailed() Message

ServerLogRetentionDefaultPolicyAddFailed describes a default policy load failure.

func ServerLogSearchChunkedQueryEmbeddingFailed

func ServerLogSearchChunkedQueryEmbeddingFailed() Message

ServerLogSearchChunkedQueryEmbeddingFailed describes a chunk embedding fallback.

func ServerLogSearchQueryEmbeddingFailed

func ServerLogSearchQueryEmbeddingFailed() Message

ServerLogSearchQueryEmbeddingFailed describes a query embedding fallback.

func ServerLogSearchReconcileFailed

func ServerLogSearchReconcileFailed() Message

ServerLogSearchReconcileFailed describes a startup search reconciliation failure.

func ServerLogSearchReconcileStorageUnavailable

func ServerLogSearchReconcileStorageUnavailable() Message

ServerLogSearchReconcileStorageUnavailable describes a startup storage lookup failure.

func ServerLogSearchRequest

func ServerLogSearchRequest() Message

ServerLogSearchRequest describes an HTTP search request message.

func ServerLogSearchRerankAPIURLMissing

func ServerLogSearchRerankAPIURLMissing() Message

ServerLogSearchRerankAPIURLMissing describes an incomplete external reranker configuration.

func ServerLogSearchRerankDisabled

func ServerLogSearchRerankDisabled() Message

ServerLogSearchRerankDisabled describes startup without search reranking.

func ServerLogSearchRerankerHealthCheckFailed

func ServerLogSearchRerankerHealthCheckFailed() Message

ServerLogSearchRerankerHealthCheckFailed describes a reranker health-check failure.

func ServerLogSearchRerankerLoading

func ServerLogSearchRerankerLoading() Message

ServerLogSearchRerankerLoading describes asynchronous local reranker loading.

func ServerLogSearchRerankerModelUnavailable

func ServerLogSearchRerankerModelUnavailable() Message

ServerLogSearchRerankerModelUnavailable describes a local reranker load failure.

func ServerLogSearchRerankerReady

func ServerLogSearchRerankerReady() Message

ServerLogSearchRerankerReady describes a configured stage-2 reranker.

func ServerLogSearchStorageLookupFailed

func ServerLogSearchStorageLookupFailed() Message

ServerLogSearchStorageLookupFailed describes a search storage lookup failure.

func ServerLogSearchTiming

func ServerLogSearchTiming() Message

ServerLogSearchTiming describes detailed search diagnostics.

func ServerLogSlowQuery

func ServerLogSlowQuery() Message

ServerLogSlowQuery describes a slow query message.

func ServerLogSlowQueryLogOpenFailed

func ServerLogSlowQueryLogOpenFailed() Message

ServerLogSlowQueryLogOpenFailed describes an unavailable slow-query log file.

func ServerLogSlowQueryLoggingConfigured

func ServerLogSlowQueryLoggingConfigured() Message

ServerLogSlowQueryLoggingConfigured describes file-backed slow-query logging.

func ServerLogSlowQueryLoggingEnabled

func ServerLogSlowQueryLoggingEnabled() Message

ServerLogSlowQueryLoggingEnabled describes enabled in-process slow-query logging.

func ServerLogUIEnabled

func ServerLogUIEnabled() Message

ServerLogUIEnabled describes successful browser UI registration.

func ServerLogUIHeadless

func ServerLogUIHeadless() Message

ServerLogUIHeadless describes UI disablement in headless mode.

func ServerLogUIInitializationFailed

func ServerLogUIInitializationFailed() Message

ServerLogUIInitializationFailed describes unavailable browser UI assets.

func StorageClientAsyncCloseEngineFailed

func StorageClientAsyncCloseEngineFailed(nodesFailed, edgesFailed, deletesFailed, pendingNodes, pendingEdges, pendingNodeDeletes, pendingEdgeDeletes int, cause error) Message

func StorageClientAsyncCloseFailed

func StorageClientAsyncCloseFailed(nodesFailed, edgesFailed, deletesFailed, pendingNodes, pendingEdges, pendingNodeDeletes, pendingEdgeDeletes int) Message

func StorageClientAsyncFlushIncomplete

func StorageClientAsyncFlushIncomplete(nodesFailed, edgesFailed, deletesFailed int) Message

func StorageClientAsyncFlushIncompleteDetailed

func StorageClientAsyncFlushIncompleteDetailed(nodesFailed, edgesFailed, deletesFailed int, details string) Message

func StorageClientBackupFailed

func StorageClientBackupFailed(cause error) Message

func StorageClientBackupFileCreateFailed

func StorageClientBackupFileCreateFailed(path string, cause error) Message

func StorageClientBackupFlushFailed

func StorageClientBackupFlushFailed(cause error) Message

func StorageClientBackupSyncFailed

func StorageClientBackupSyncFailed(cause error) Message

func StorageClientCleanEdgeTypeIndexFailed

func StorageClientCleanEdgeTypeIndexFailed(cause error) Message

func StorageClientCleanLabelIndexFailed

func StorageClientCleanLabelIndexFailed(cause error) Message

func StorageClientDeletePrefixRequired

func StorageClientDeletePrefixRequired() Message

func StorageClientDropPrefixFailed

func StorageClientDropPrefixFailed(prefix byte, cause error) Message

func StorageClientEdgeEncodeFailed

func StorageClientEdgeEncodeFailed(cause error) Message

func StorageClientNodeEmbeddingChunkDeleteFailed

func StorageClientNodeEmbeddingChunkDeleteFailed(cause error) Message

func StorageClientNodeEmbeddingChunkStoreFailed

func StorageClientNodeEmbeddingChunkStoreFailed(chunkIndex int, cause error) Message

func StorageClientNodeEmbeddingChunksDeleteFailed

func StorageClientNodeEmbeddingChunksDeleteFailed(cause error) Message

func StorageClientNodeEmbeddingPayloadBudgetExceeded

func StorageClientNodeEmbeddingPayloadBudgetExceeded(chunkIndex int) Message

func StorageClientNodeEncodeFailed

func StorageClientNodeEncodeFailed(cause error) Message

func StorageClientNodeIDNamespaceRequired

func StorageClientNodeIDNamespaceRequired(nodeID string) Message

func StorageClientNodeIDNamespaceUnprefixed

func StorageClientNodeIDNamespaceUnprefixed(nodeID string) Message

func StorageClientNodeIndexCatalogWriteFailed

func StorageClientNodeIndexCatalogWriteFailed(cause error) Message

func StorageClientNodeLabelIndexKeyBuildFailed

func StorageClientNodeLabelIndexKeyBuildFailed(cause error) Message

func StorageClientNodeLabelIndexWriteFailed

func StorageClientNodeLabelIndexWriteFailed(cause error) Message

func StorageClientNodePendingEmbedIndexWriteFailed

func StorageClientNodePendingEmbedIndexWriteFailed(cause error) Message

func StorageClientNodeWriteFailed

func StorageClientNodeWriteFailed(cause error) Message

func StorageClientReceiptHashMarshalFailed

func StorageClientReceiptHashMarshalFailed(cause error) Message

func StorageClientReceiptNilReceiver

func StorageClientReceiptNilReceiver() Message

func StorageClientReceiptTransactionIDRequired

func StorageClientReceiptTransactionIDRequired() Message

func StorageClientReceiptWALRangeInvalid

func StorageClientReceiptWALRangeInvalid(walSeqEnd, walSeqStart uint64) Message

func StorageClientReceiptWALSequenceRequired

func StorageClientReceiptWALSequenceRequired() Message

func StorageClientStorageClosed

func StorageClientStorageClosed() Message

func StorageCompositeBulkWriteTargetAmbiguous

func StorageCompositeBulkWriteTargetAmbiguous() Message

StorageCompositeBulkWriteTargetAmbiguous identifies an unscoped bulk node write.

func StorageCompositeConstituentCloseFailed

func StorageCompositeConstituentCloseFailed(alias string, cause error) Message

StorageCompositeConstituentCloseFailed identifies a failed constituent close.

func StorageCompositeConstituentLookupFailed

func StorageCompositeConstituentLookupFailed(alias string, cause error) Message

StorageCompositeConstituentLookupFailed identifies a constituent lookup failure during a bulk write.

func StorageCompositeConstituentNotFound

func StorageCompositeConstituentNotFound(alias string) Message

StorageCompositeConstituentNotFound identifies an unknown constituent alias.

func StorageCompositeConstituentQueryFailed

func StorageCompositeConstituentQueryFailed(alias string, cause error) Message

StorageCompositeConstituentQueryFailed identifies a failed constituent query.

func StorageCompositeConstituentStreamFailed

func StorageCompositeConstituentStreamFailed(alias string, cause error) Message

StorageCompositeConstituentStreamFailed identifies a failed constituent stream.

func StorageCompositeDefaultConstituentLookupFailed

func StorageCompositeDefaultConstituentLookupFailed(cause error) Message

StorageCompositeDefaultConstituentLookupFailed identifies a failed default constituent lookup.

func StorageCompositeDeleteByPrefixUnsupported

func StorageCompositeDeleteByPrefixUnsupported() Message

StorageCompositeDeleteByPrefixUnsupported identifies an unsupported composite prefix deletion.

func StorageCompositeEdgeBulkCreateFailed

func StorageCompositeEdgeBulkCreateFailed(alias string, cause error) Message

StorageCompositeEdgeBulkCreateFailed identifies a failed constituent edge bulk write.

func StorageCompositeEdgeCountFailed

func StorageCompositeEdgeCountFailed(alias string, cause error) Message

StorageCompositeEdgeCountFailed identifies a failed constituent edge count.

func StorageCompositeEdgeRequired

func StorageCompositeEdgeRequired() Message

StorageCompositeEdgeRequired identifies a nil edge write.

func StorageCompositeNoWritableConstituents

func StorageCompositeNoWritableConstituents() Message

StorageCompositeNoWritableConstituents identifies a composite without a writable target.

func StorageCompositeNodeBulkCreateFailed

func StorageCompositeNodeBulkCreateFailed(alias string, cause error) Message

StorageCompositeNodeBulkCreateFailed identifies a failed constituent node bulk write.

func StorageCompositeNodeCountFailed

func StorageCompositeNodeCountFailed(alias string, cause error) Message

StorageCompositeNodeCountFailed identifies a failed constituent node count.

func StorageCompositeReadOnlyStartNode

func StorageCompositeReadOnlyStartNode(alias string) Message

StorageCompositeReadOnlyStartNode identifies an edge whose start node cannot be written.

func StorageCompositeStartNodeCheckFailed

func StorageCompositeStartNodeCheckFailed(cause error) Message

StorageCompositeStartNodeCheckFailed identifies a failed start-node routing lookup.

func StorageCompositeStartNodeNotFound

func StorageCompositeStartNodeNotFound() Message

StorageCompositeStartNodeNotFound identifies an edge with no routable start node.

func StorageCompositeUnroutedEdgeBulkCreateFailed

func StorageCompositeUnroutedEdgeBulkCreateFailed(cause error) Message

StorageCompositeUnroutedEdgeBulkCreateFailed identifies a failed fallback edge bulk write.

func StorageCompositeWriteTargetAmbiguous

func StorageCompositeWriteTargetAmbiguous() Message

StorageCompositeWriteTargetAmbiguous identifies an unscoped composite write.

func StorageLoaderConvertingNode

func StorageLoaderConvertingNode(cause error) Message

func StorageLoaderConvertingRelationship

func StorageLoaderConvertingRelationship(cause error) Message

func StorageLoaderCreatingEdges

func StorageLoaderCreatingEdges(cause error) Message

func StorageLoaderCreatingFile

func StorageLoaderCreatingFile(path string, cause error) Message

func StorageLoaderCreatingNodes

func StorageLoaderCreatingNodes(cause error) Message

func StorageLoaderDecodingJSON

func StorageLoaderDecodingJSON(cause error) Message

func StorageLoaderEncodingJSON

func StorageLoaderEncodingJSON(cause error) Message

func StorageLoaderExportEngineUnsupported

func StorageLoaderExportEngineUnsupported(engineType string) Message

func StorageLoaderGettingAllEdges

func StorageLoaderGettingAllEdges(cause error) Message

func StorageLoaderGettingAllNodes

func StorageLoaderGettingAllNodes(cause error) Message

func StorageLoaderGettingEdges

func StorageLoaderGettingEdges(cause error) Message

func StorageLoaderGettingNodes

func StorageLoaderGettingNodes(cause error) Message

func StorageLoaderLoadingNodes

func StorageLoaderLoadingNodes(path string, cause error) Message

func StorageLoaderLoadingRelationships

func StorageLoaderLoadingRelationships(path string, cause error) Message

func StorageLoaderOpeningFile

func StorageLoaderOpeningFile(path string, cause error) Message

func StorageLoaderParsingNodeJSON

func StorageLoaderParsingNodeJSON(cause error) Message

func StorageLoaderParsingRelationshipJSON

func StorageLoaderParsingRelationshipJSON(cause error) Message

func StorageLoaderScanningFile

func StorageLoaderScanningFile(cause error) Message

func StorageLogWALEmbeddingsSkipped

func StorageLogWALEmbeddingsSkipped() Message

StorageLogWALEmbeddingsSkipped describes recoverable corrupted embeddings.

func StorageLogWALIncompleteWrite

func StorageLogWALIncompleteWrite() Message

StorageLogWALIncompleteWrite describes an incomplete atomic WAL tail.

func StoragePropertyInvalidIndex

func StoragePropertyInvalidIndex(index int, cause error) Message

func StoragePropertyInvalidMapKey

func StoragePropertyInvalidMapKey(key string, cause error) Message

func StoragePropertyInvalidValue

func StoragePropertyInvalidValue(key string, cause error) Message

func StoragePropertyTypeUnsupported

func StoragePropertyTypeUnsupported(actualType string) Message

func StorageRemoteBoltDriverCreateFailed

func StorageRemoteBoltDriverCreateFailed(cause error) Message

func StorageRemoteCreateNodeNoRows

func StorageRemoteCreateNodeNoRows() Message

func StorageRemoteDatabaseRequired

func StorageRemoteDatabaseRequired() Message

func StorageRemoteDeletePrefixUnsupported

func StorageRemoteDeletePrefixUnsupported(prefix string) Message

func StorageRemoteError

func StorageRemoteError(code, detail string) Message

func StorageRemoteNodeMapExpected

func StorageRemoteNodeMapExpected(actualType string) Message

func StorageRemoteRelationshipMapExpected

func StorageRemoteRelationshipMapExpected(actualType string) Message

func StorageRemoteResultKeysFailed

func StorageRemoteResultKeysFailed(cause error) Message

func StorageRemoteTransactionClosed

func StorageRemoteTransactionClosed() Message

func StorageRemoteTransactionCommitURLMissing

func StorageRemoteTransactionCommitURLMissing() Message

func StorageRemoteTransactionDecodeFailed

func StorageRemoteTransactionDecodeFailed(status int, cause error) Message

func StorageRemoteTransactionOpenDecodeFailed

func StorageRemoteTransactionOpenDecodeFailed(status int, cause error) Message

func StorageRemoteURIRequired

func StorageRemoteURIRequired() Message

func StorageRemoteURISchemeUnsupported

func StorageRemoteURISchemeUnsupported(uri string) Message

func StorageSchemaCompositeIndexMinProperties

func StorageSchemaCompositeIndexMinProperties(count int) Message

func StorageSchemaConflictingCardinalityConstraint

func StorageSchemaConflictingCardinalityConstraint(name, direction, label string, existing, requested int) Message

func StorageSchemaConflictingConstraintAlreadyExists

func StorageSchemaConflictingConstraintAlreadyExists(name string) Message

func StorageSchemaConflictingDomainConstraint

func StorageSchemaConflictingDomainConstraint(name string) Message

func StorageSchemaConflictingPolicy

func StorageSchemaConflictingPolicy(sourceLabel, relationshipType, targetLabel, existingName string) Message

func StorageSchemaConstraintAlreadyExists

func StorageSchemaConstraintAlreadyExists(name string) Message

func StorageSchemaConstraintContractAlreadyExists

func StorageSchemaConstraintContractAlreadyExists(name string) Message

func StorageSchemaConstraintContractInvalid

func StorageSchemaConstraintContractInvalid(name, predicate string, cause error) Message

func StorageSchemaConstraintContractNameConflict

func StorageSchemaConstraintContractNameConflict(name string) Message

func StorageSchemaConstraintContractViolated

func StorageSchemaConstraintContractViolated(name, predicate string) Message

func StorageSchemaConstraintDifferentAllowedValues

func StorageSchemaConstraintDifferentAllowedValues(name string) Message

func StorageSchemaConstraintDifferentMaxCount

func StorageSchemaConstraintDifferentMaxCount(name string, existing, requested int) Message

func StorageSchemaConstraintDifferentSchemaOrType

func StorageSchemaConstraintDifferentSchemaOrType(name string) Message

func StorageSchemaConstraintNotFound

func StorageSchemaConstraintNotFound(name string) Message

func StorageSchemaDecayEdgeBindingConflict

func StorageSchemaDecayEdgeBindingConflict(edgeType, bindingName string) Message

func StorageSchemaDecayLabelBindingConflict

func StorageSchemaDecayLabelBindingConflict(labels any, bindingName string) Message

func StorageSchemaDecayProfileBindingAlreadyExists

func StorageSchemaDecayProfileBindingAlreadyExists(name string) Message

func StorageSchemaDecayProfileBundleAlreadyExists

func StorageSchemaDecayProfileBundleAlreadyExists(name string) Message

func StorageSchemaDecayProfileBundleNameRequired

func StorageSchemaDecayProfileBundleNameRequired() Message

func StorageSchemaDecayProfileBundleNotFound

func StorageSchemaDecayProfileBundleNotFound(name string) Message

func StorageSchemaDecayProfileBundleReferenced

func StorageSchemaDecayProfileBundleReferenced(name string) Message

func StorageSchemaDecayProfileNotFound

func StorageSchemaDecayProfileNotFound(name string) Message

func StorageSchemaDecayStructuralIndexConflict

func StorageSchemaDecayStructuralIndexConflict(property string) Message

func StorageSchemaEquivalentConstraintAlreadyExists

func StorageSchemaEquivalentConstraintAlreadyExists(name string) Message

func StorageSchemaIndexNotFound

func StorageSchemaIndexNotFound(name string) Message

func StorageSchemaInvalidDecayFunction

func StorageSchemaInvalidDecayFunction(function any) Message

func StorageSchemaInvalidScopeType

func StorageSchemaInvalidScopeType(scope any) Message

func StorageSchemaInvalidScoreFromMode

func StorageSchemaInvalidScoreFromMode(mode any) Message

func StorageSchemaMissingRelationshipEndpoint

func StorageSchemaMissingRelationshipEndpoint() Message

func StorageSchemaMultiplierNonNegative

func StorageSchemaMultiplierNonNegative(value float64) Message

func StorageSchemaPromotionPolicyAlreadyExists

func StorageSchemaPromotionPolicyAlreadyExists(name string) Message

func StorageSchemaPromotionPolicyNotFound

func StorageSchemaPromotionPolicyNotFound(name string) Message

func StorageSchemaPromotionProfileAlreadyExists

func StorageSchemaPromotionProfileAlreadyExists(name string) Message

func StorageSchemaPromotionProfileNameRequired

func StorageSchemaPromotionProfileNameRequired() Message

func StorageSchemaPromotionProfileNotFound

func StorageSchemaPromotionProfileNotFound(name string) Message

func StorageSchemaPromotionProfileReferenced

func StorageSchemaPromotionProfileReferenced(name string) Message

func StorageSchemaPromotionProfileWhenClauseNotFound

func StorageSchemaPromotionProfileWhenClauseNotFound(name string) Message

func StorageSchemaPropertyIndexNotFound

func StorageSchemaPropertyIndexNotFound(label, property string) Message

func StorageSchemaRangeIndexNotFound

func StorageSchemaRangeIndexNotFound(name string) Message

func StorageSchemaRangeIndexNumericValueRequired

func StorageSchemaRangeIndexNumericValueRequired(value any) Message

func StorageSchemaRangeIndexPropertiesRequired

func StorageSchemaRangeIndexPropertiesRequired() Message

func StorageSchemaScanNodesFailed

func StorageSchemaScanNodesFailed(cause error) Message

func StorageSchemaScanRelationshipsFailed

func StorageSchemaScanRelationshipsFailed(cause error) Message

func StorageSchemaScoreCapOutOfRange

func StorageSchemaScoreCapOutOfRange(value float64) Message

func StorageSchemaScoreFloorOutOfRange

func StorageSchemaScoreFloorOutOfRange(value float64) Message

func StorageSchemaScoreFromPropertyRequired

func StorageSchemaScoreFromPropertyRequired() Message

func StorageSchemaUniqueConstraintViolation

func StorageSchemaUniqueConstraintViolation(label, property string, value any) Message

func StorageSchemaUnknownOption

func StorageSchemaUnknownOption(option string) Message

func StorageSchemaUnsupportedConstraintLiteral

func StorageSchemaUnsupportedConstraintLiteral(literal string) Message

func StorageSchemaUnsupportedConstraintPattern

func StorageSchemaUnsupportedConstraintPattern(pattern string) Message

func StorageSchemaUnsupportedContractTargetEntityType

func StorageSchemaUnsupportedContractTargetEntityType(entityType string) Message

func StorageSchemaUnsupportedNodePredicate

func StorageSchemaUnsupportedNodePredicate() Message

func StorageSchemaUnsupportedRelationshipPredicate

func StorageSchemaUnsupportedRelationshipPredicate() Message

func StorageSchemaVisibilityThresholdOutOfRange

func StorageSchemaVisibilityThresholdOutOfRange(value float64) Message

func StorageTransactionAdjacentEdgeChanged

func StorageTransactionAdjacentEdgeChanged(nodeID, edgeID string) Message

func StorageTransactionCommitConflict

func StorageTransactionCommitConflict(cause error) Message

func StorageTransactionCommitNamespaceMissing

func StorageTransactionCommitNamespaceMissing() Message

func StorageTransactionConcurrentModification

func StorageTransactionConcurrentModification() Message

func StorageTransactionConstraintViolation

func StorageTransactionConstraintViolation(cause error) Message

func StorageTransactionCrossNamespace

func StorageTransactionCrossNamespace(pinnedNamespace, attemptedNamespace string) Message

func StorageTransactionEdgeChanged

func StorageTransactionEdgeChanged(edgeID string) Message

func StorageTransactionEndNodeMissing

func StorageTransactionEndNodeMissing(nodeID string) Message

func StorageTransactionEndpointDeleted

func StorageTransactionEndpointDeleted(nodeID string) Message

func StorageTransactionEngineClosed

func StorageTransactionEngineClosed() Message

func StorageTransactionIDNamespaceRequired

func StorageTransactionIDNamespaceRequired(id string) Message

func StorageTransactionMetadataTooLarge

func StorageTransactionMetadataTooLarge(actual, maximum int) Message

func StorageTransactionNamespaceRequired

func StorageTransactionNamespaceRequired() Message

func StorageTransactionNodeChanged

func StorageTransactionNodeChanged(nodeID string) Message

func StorageTransactionNodeChangedDetailed

func StorageTransactionNodeChangedDetailed(nodeID, head, readTimestamp string) Message

func StorageTransactionStartNodeMissing

func StorageTransactionStartNodeMissing(nodeID string) Message

func StorageValidationAllowedPolicy

func StorageValidationAllowedPolicy(sourceLabels, relationshipType, targetLabels string) Message

func StorageValidationAllowedPolicyCreation

func StorageValidationAllowedPolicyCreation(edgeID, startNodeID, endNodeID, relationshipType string) Message

func StorageValidationCardinalityCreationExceeded

func StorageValidationCardinalityCreationExceeded(nodeID string, count int, direction, relationshipType string, maxCount int) Message

func StorageValidationCardinalityExceeded

func StorageValidationCardinalityExceeded(direction string, maxCount int, relationshipType, nodeID string, current int) Message

func StorageValidationDisallowedPolicy

func StorageValidationDisallowedPolicy(sourceLabel, relationshipType, targetLabel, constraintName string) Message

func StorageValidationDisallowedPolicyCreation

func StorageValidationDisallowedPolicyCreation(edgeID, startNodeID, sourceLabel, endNodeID, targetLabel, relationshipType string) Message

func StorageValidationDomainAllowedValuesRequired

func StorageValidationDomainAllowedValuesRequired() Message

func StorageValidationDomainEdgeInvalid

func StorageValidationDomainEdgeInvalid(edgeID, property string, value, allowedValues any) Message

func StorageValidationDomainNodeInvalid

func StorageValidationDomainNodeInvalid(nodeID, property string, value, allowedValues any) Message

func StorageValidationDomainPropertyCount

func StorageValidationDomainPropertyCount(actual int) Message

func StorageValidationEdgeKeyNull

func StorageValidationEdgeKeyNull(edgeID, property string) Message

func StorageValidationExistsPropertyCount

func StorageValidationExistsPropertyCount(actual int) Message

func StorageValidationExpectedType

func StorageValidationExpectedType(expectedType, actualType string) Message

func StorageValidationLabelChangeAllowed

func StorageValidationLabelChangeAllowed(sourceLabels, relationshipType, targetLabels string) Message

func StorageValidationLabelChangeDisallowed

func StorageValidationLabelChangeDisallowed(sourceLabel, relationshipType, targetLabel, constraintName string) Message

func StorageValidationNodeCompositeKeyExisting

func StorageValidationNodeCompositeKeyExisting(properties, values any, nodeID string) Message

func StorageValidationNodeExistsMissingCreation

func StorageValidationNodeExistsMissingCreation(nodeID, property string) Message

func StorageValidationNodeKeyDuplicateCreation

func StorageValidationNodeKeyDuplicateCreation(firstNodeID, secondNodeID string, properties, values any) Message

func StorageValidationNodeKeyInTransaction

func StorageValidationNodeKeyInTransaction(properties, values any) Message

func StorageValidationNodeKeyNull

func StorageValidationNodeKeyNull(property string) Message

func StorageValidationNodeKeyNullCreation

func StorageValidationNodeKeyNullCreation(nodeID, property string) Message

func StorageValidationNodeKeyPropertyRequired

func StorageValidationNodeKeyPropertyRequired() Message

func StorageValidationNodePropertyInvalid

func StorageValidationNodePropertyInvalid(nodeID, property string, cause error) Message

func StorageValidationNodeUniqueConcurrent

func StorageValidationNodeUniqueConcurrent(property string, value any) Message

func StorageValidationNodeUniqueDuplicate

func StorageValidationNodeUniqueDuplicate(firstNodeID, secondNodeID, property string, value any) Message

func StorageValidationNodeUniqueExisting

func StorageValidationNodeUniqueExisting(property string, value any, nodeID string) Message

func StorageValidationNodeUniqueInTransaction

func StorageValidationNodeUniqueInTransaction(property string, value any) Message

func StorageValidationPropertyDomainInvalid

func StorageValidationPropertyDomainInvalid(property string, value, allowedValues any) Message

func StorageValidationPropertyTypeRequired

func StorageValidationPropertyTypeRequired(property, expectedType string, cause error) Message

func StorageValidationRefreshUniqueFailed

func StorageValidationRefreshUniqueFailed(cause error) Message

func StorageValidationRefreshUniqueScanFailed

func StorageValidationRefreshUniqueScanFailed(cause error) Message

func StorageValidationRelationshipCompositeDuplicate

func StorageValidationRelationshipCompositeDuplicate(firstEdgeID, secondEdgeID string, key any) Message

func StorageValidationRelationshipCompositeExisting

func StorageValidationRelationshipCompositeExisting(edgeID string) Message

func StorageValidationRelationshipConstraintTypeUnsupported

func StorageValidationRelationshipConstraintTypeUnsupported(constraintType string) Message

func StorageValidationRelationshipExistsMissing

func StorageValidationRelationshipExistsMissing(edgeID, property string) Message

func StorageValidationRelationshipExistsPropertyCount

func StorageValidationRelationshipExistsPropertyCount() Message

func StorageValidationRelationshipPropertyInvalid

func StorageValidationRelationshipPropertyInvalid(edgeID, property string, cause error) Message

func StorageValidationRelationshipPropertyMissing

func StorageValidationRelationshipPropertyMissing(edgeID, property string) Message

func StorageValidationRelationshipUniqueDuplicate

func StorageValidationRelationshipUniqueDuplicate(firstEdgeID, secondEdgeID, property string, value any) Message

func StorageValidationRelationshipUniqueExisting

func StorageValidationRelationshipUniqueExisting(property string, value any, edgeID string) Message

func StorageValidationRelationshipUniquePropertyCount

func StorageValidationRelationshipUniquePropertyCount() Message

func StorageValidationRequiredPropertyMissing

func StorageValidationRequiredPropertyMissing(property string) Message

func StorageValidationScanEdgesFailed

func StorageValidationScanEdgesFailed(cause error) Message

func StorageValidationScanNodesFailed

func StorageValidationScanNodesFailed(cause error) Message

func StorageValidationTemporalCreationFailed

func StorageValidationTemporalCreationFailed(detail string) Message

func StorageValidationTemporalEdgeInvalid

func StorageValidationTemporalEdgeInvalid(edgeID, property string) Message

func StorageValidationTemporalEdgeOverlap

func StorageValidationTemporalEdgeOverlap(edgeID string, key any) Message

func StorageValidationTemporalEdgesOverlap

func StorageValidationTemporalEdgesOverlap(firstEdgeID, secondEdgeID string) Message

func StorageValidationTemporalKeyNull

func StorageValidationTemporalKeyNull(property string) Message

func StorageValidationTemporalNodeInvalidCreation

func StorageValidationTemporalNodeInvalidCreation(nodeID, property string) Message

func StorageValidationTemporalNodeKeyNullCreation

func StorageValidationTemporalNodeKeyNullCreation(nodeID, property string) Message

func StorageValidationTemporalNodeOverlap

func StorageValidationTemporalNodeOverlap(nodeID, property string, value any) Message

func StorageValidationTemporalNodeRequired

func StorageValidationTemporalNodeRequired(property, nodeID string) Message

func StorageValidationTemporalNodesOverlapCreation

func StorageValidationTemporalNodesOverlapCreation(firstNodeID, secondNodeID string) Message

func StorageValidationTemporalPropertiesAtLeastThree

func StorageValidationTemporalPropertiesAtLeastThree() Message

func StorageValidationTemporalPropertiesExactlyThree

func StorageValidationTemporalPropertiesExactlyThree() Message

func StorageValidationTemporalStartInvalid

func StorageValidationTemporalStartInvalid(property string) Message

func StorageValidationUniquePropertyCount

func StorageValidationUniquePropertyCount(actual int) Message

func StorageValidationUnknownConstraintType

func StorageValidationUnknownConstraintType(constraintType string) Message

func StorageValidationUnknownPropertyType

func StorageValidationUnknownPropertyType(propertyType string) Message

func SystemDatabaseOverridesUnsupported

func SystemDatabaseOverridesUnsupported() Message

SystemDatabaseOverridesUnsupported identifies an override attempt on the system database.

func TemporalGraphDiffUnsupported

func TemporalGraphDiffUnsupported() Message

TemporalGraphDiffUnsupported identifies unavailable temporal diff support.

func TemporalGraphNodeLimitExceeded

func TemporalGraphNodeLimitExceeded(maximum int) Message

func TemporalGraphReconstructionUnsupported

func TemporalGraphReconstructionUnsupported() Message

TemporalGraphReconstructionUnsupported identifies unavailable temporal reconstruction support.

func TransactionNotFound

func TransactionNotFound() Message

TransactionNotFound identifies an HTTP transaction lookup failure.

func UnknownEndpoint

func UnknownEndpoint() Message

func UnknownTransactionEndpoint

func UnknownTransactionEndpoint() Message

func UnsupportedGrantType

func UnsupportedGrantType() Message

UnsupportedGrantType identifies an unsupported OAuth grant_type value.

func UserNotFound

func UserNotFound() Message

UserNotFound identifies an HTTP user lookup failure.

func WritePermissionRequired

func WritePermissionRequired() Message

WritePermissionRequired identifies missing write permission.

type MessageID

type MessageID string

MessageID is a stable, language-independent catalog key.

const (
	MessageServerLogHTTPRequest                         MessageID = "server-runtime.log.http_request"
	MessageServerLogSlowQuery                           MessageID = "server-runtime.log.slow_query"
	MessageServerLogAuthTrace                           MessageID = "server-runtime.log.auth_trace"
	MessageServerLogHTTPPanicRecovered                  MessageID = "server-runtime.log.http_panic_recovered"
	MessageServerLogHTTPPanicStackTrace                 MessageID = "server-runtime.log.http_panic_stack_trace"
	MessageServerLogOAuthRedirectStateStored            MessageID = "server-runtime.log.oauth_redirect_state_stored"
	MessageServerLogOAuthCallbackFailed                 MessageID = "server-runtime.log.oauth_callback_failed"
	MessageServerLogOAuthUserAuthenticated              MessageID = "server-runtime.log.oauth_user_authenticated"
	MessageServerLogRBACRoleEntitlementsSetFailed       MessageID = "server-runtime.log.rbac_role_entitlements_set_failed"
	MessageServerLogRBACAllowlistSaveFailed             MessageID = "server-runtime.log.rbac_allowlist_save_failed"
	MessageServerLogRBACPrivilegesPutMatrixFailed       MessageID = "server-runtime.log.rbac_privileges_put_matrix_failed"
	MessageServerLogEmbedRegenerationAborted            MessageID = "server-runtime.log.embed_regeneration_aborted"
	MessageServerLogEmbedRegenerationStarting           MessageID = "server-runtime.log.embed_regeneration_starting"
	MessageServerLogEmbedWorkerResetFailed              MessageID = "server-runtime.log.embed_worker_reset_failed"
	MessageServerLogEmbedRegenerationSkippedDBClosing   MessageID = "server-runtime.log.embed_regeneration_skipped_db_closing"
	MessageServerLogEmbedClearFailed                    MessageID = "server-runtime.log.embed_clear_failed"
	MessageServerLogEmbedCleared                        MessageID = "server-runtime.log.embed_cleared"
	MessageServerLogEmbedWorkerTriggerFailed            MessageID = "server-runtime.log.embed_worker_trigger_failed"
	MessageServerLogEmbedWorkerTriggered                MessageID = "server-runtime.log.embed_worker_triggered"
	MessageServerLogSearchRequest                       MessageID = "server-runtime.log.search_request"
	MessageServerLogSearchStorageLookupFailed           MessageID = "server-runtime.log.search_storage_lookup_failed"
	MessageServerLogSearchQueryEmbeddingFailed          MessageID = "server-runtime.log.search_query_embedding_failed"
	MessageServerLogSearchChunkedQueryEmbeddingFailed   MessageID = "server-runtime.log.search_chunked_query_embedding_failed"
	MessageServerLogSearchTiming                        MessageID = "server-runtime.log.search_timing"
	MessageServerLogDBConfigReloadFailed                MessageID = "server-runtime.log.dbconfig_reload_failed"
	MessageServerLogDBConfigRebuildStorageResolveFailed MessageID = "server-runtime.log.dbconfig_rebuild_storage_resolve_failed"
	MessageServerLogDBConfigRebuildStartFailed          MessageID = "server-runtime.log.dbconfig_rebuild_start_failed"
	MessageServerLogCreateDatabaseDefensiveFix          MessageID = "server-runtime.log.create_database_defensive_fix"
	MessageServerLogRetentionDefaultPolicyAddFailed     MessageID = "server-runtime.log.retention_default_policy_add_failed"
	MessageServerLogGraphQLRequest                      MessageID = "server-runtime.log.graphql_request"
	MessageServerLogQdrantGRPCEnabled                   MessageID = "server-runtime.log.qdrant_grpc_enabled"
)
const (
	MessageOSLanguageUndetected         MessageID = "localization.os_language_undetected"
	MessageLanguagePackMissing          MessageID = "localization.language_pack_missing"
	MessageCatalogEntryMissing          MessageID = "localization.catalog_entry_missing"
	MessageInvalidRequestBody           MessageID = "server.invalid_request_body"
	MessageInvalidJSONBody              MessageID = "server.invalid_json_body"
	MessagePostRequired                 MessageID = "server.method_post_required"
	MessageGetRequired                  MessageID = "server.method_get_required"
	MessageGetOrPostRequired            MessageID = "server.method_get_or_post_required"
	MessageGetOrPutRequired             MessageID = "server.method_get_or_put_required"
	MessageGetPutDeleteRequired         MessageID = "server.method_get_put_or_delete_required"
	MessagePostOrDeleteRequired         MessageID = "server.method_post_or_delete_required"
	MessageMethodNotAllowed             MessageID = "server.method_not_allowed"
	MessageRequestBodyReadFailed        MessageID = "request.body_read_failed"
	MessageMCPParseError                MessageID = "mcp.parse_error"
	MessageMCPMethodNotFound            MessageID = "mcp.method_not_found"
	MessageMCPToolFailed                MessageID = "mcp.tool_execution_failed"
	MessageQdrantCollectionName         MessageID = "qdrant.collection_name_required"
	MessageQdrantFieldRequired          MessageID = "qdrant.field_required"
	MessageQdrantFieldsRequired         MessageID = "qdrant.fields_required"
	MessageQdrantDatabaseDenied         MessageID = "qdrant.database_access_denied"
	MessageQdrantDatabaseWrite          MessageID = "qdrant.database_write_denied"
	MessageQdrantPermission             MessageID = "qdrant.permission_denied"
	MessageQdrantAuthRequired           MessageID = "qdrant.authentication_required"
	MessageQdrantInvalidToken           MessageID = "qdrant.invalid_or_expired_token"
	MessageQdrantCollectionMiss         MessageID = "qdrant.collection_not_found"
	MessageQdrantSnapshotMiss           MessageID = "qdrant.snapshot_not_found"
	MessageQdrantDimensionMismatch      MessageID = "qdrant.vector_dimension_mismatch"
	MessageQdrantMutationsDisabled      MessageID = "qdrant.vector_mutations_disabled"
	MessageQdrantLimitTooLarge          MessageID = "qdrant.limit_too_large"
	MessageQdrantEmbeddingsRequired     MessageID = "qdrant.text_query_embeddings_required"
	MessageQdrantGetPointsFailed        MessageID = "qdrant.get_points_failed"
	MessageQdrantEmbedQueryFailed       MessageID = "qdrant.embed_query_failed"
	MessageQdrantCollectionFailed       MessageID = "qdrant.collection_not_found_with_cause"
	MessageQdrantSnapshotDirFailed      MessageID = "qdrant.snapshot_directory_create_failed"
	MessageQdrantSnapshotSaveFailed     MessageID = "qdrant.snapshot_save_failed"
	MessageQdrantSnapshotListFailed     MessageID = "qdrant.snapshot_list_failed"
	MessageQdrantSnapshotDeleteFailed   MessageID = "qdrant.snapshot_delete_failed"
	MessageHeimdallMethodNotAllowed     MessageID = "heimdall.method_not_allowed"
	MessageHeimdallInvalidRequestBody   MessageID = "heimdall.invalid_request_body"
	MessageHeimdallStreamingUnsupported MessageID = "heimdall.streaming_not_supported"
	MessageHeimdallBifrostDisabled      MessageID = "heimdall.bifrost_not_enabled"
	MessageHeimdallQueryRequired        MessageID = "heimdall.query_parameter_required"
	MessageHeimdallAutocompleteFailed   MessageID = "heimdall.autocomplete_failed"
	MessageHeimdallGenerationFailed     MessageID = "heimdall.generation_failed"
	MessageRetentionDisabled            MessageID = "retention.manager_disabled"
	MessageRetentionPolicyIDRequired    MessageID = "retention.policy_id_required"
	MessageRetentionHoldIDRequired      MessageID = "retention.hold_id_required"
	MessageRetentionErasureIDRequired   MessageID = "retention.erasure_id_required"
	MessageDeleteRequired               MessageID = "server.method_delete_required"
	MessageGDPROwnExportOnly            MessageID = "gdpr.own_data_export_only"
	MessageGDPRConfirmationRequired     MessageID = "gdpr.confirmation_required"
	MessageGDPROwnDeleteOnly            MessageID = "gdpr.own_data_delete_only"
	MessageGDPRLegalHold                MessageID = "gdpr.legal_hold_prevents_deletion"
	MessageItemsProcessed               MessageID = "localization.items_processed"
	MessageNotAuthenticated             MessageID = "security.not_authenticated"
	MessageSchemaPermission             MessageID = "security.schema_permission_required"
	MessageAdminPermission              MessageID = "security.admin_permission_required"
	MessageWritePermission              MessageID = "security.write_permission_required"
	MessageReadPermission               MessageID = "security.read_permission_required"
	MessageDatabaseNotFound             MessageID = "database.not_found"
	MessageHTTPDatabaseNotFound         MessageID = "server.database_not_found"
	MessageDatabaseAccessDenied         MessageID = "security.database_access_denied"
	MessageDatabaseWriteDenied          MessageID = "security.database_write_denied"
	MessageAuthNotConfigured            MessageID = "server.authentication_not_configured"
	MessageOAuthNotConfigured           MessageID = "server.oauth_not_configured"
	MessageHTTPNotAuthenticated         MessageID = "server.not_authenticated"
	MessageUserNotFound                 MessageID = "server.user_not_found"
	MessageTransactionNotFound          MessageID = "server.transaction_not_found"
	MessageRequestFieldRequired         MessageID = "server.request_field_required"
	MessageNotFound                     MessageID = "server.not_found"
	MessageInvalidGPUManager            MessageID = "server.invalid_gpu_manager_type"
	MessageGPUManagerUnavailable        MessageID = "server.gpu_manager_not_initialized"
	MessageTemporalReconstruct          MessageID = "server.temporal_graph_reconstruction_unsupported"
	MessageTemporalDiff                 MessageID = "server.temporal_graph_diff_unsupported"
	MessageNoAuthentication             MessageID = "security.no_authentication_provided"
	MessageInsufficientPerms            MessageID = "security.insufficient_permissions"
	MessageInternalServerError          MessageID = "server.internal_error"
	MessageBoltAuthRequired             MessageID = "bolt.authentication_required"
	MessageBoltInvalidCreds             MessageID = "bolt.invalid_credentials"
	MessageBoltInvalidToken             MessageID = "bolt.invalid_or_expired_token"
	MessageBoltAuthUnavailable          MessageID = "bolt.authentication_not_configured"
	MessageBoltUnsupportedScheme        MessageID = "bolt.unsupported_auth_scheme"
	MessageBoltDatabaseLookup           MessageID = "bolt.database_not_found_with_cause"
	MessageBoltNoTransaction            MessageID = "bolt.no_transaction_to_commit"
	MessageBoltRunParseFailed           MessageID = "bolt.run_message_parse_failed"
	MessageBoltBookmarkValidation       MessageID = "bolt.bookmark_validation_failed"
	MessageSearcherRequired             MessageID = "search.searcher_required"
	MessageRequestRequired              MessageID = "request.required"
	MessageQueryRequired                MessageID = "search.query_required"
	MessageQueryChunkFailed             MessageID = "search.query_chunk_failed"
	MessageSearchFailed                 MessageID = "search.failed"
	MessageGRPCLocalizationInitFailed   MessageID = "grpc.localization_initialization_failed"
	MessageExternalDiagnostic           MessageID = "localization.external_diagnostic"
)
const (
	MessageAdminCLIErrorPrefix                 MessageID = "admincli.error_prefix"
	MessageAdminCLIRootShort                   MessageID = "admincli.root_short"
	MessageAdminCLIDatabaseShort               MessageID = "admincli.database_short"
	MessageAdminCLIImportShort                 MessageID = "admincli.import_short"
	MessageAdminCLIFullImportShort             MessageID = "admincli.full_import_short"
	MessageAdminCLIIncrementalImportShort      MessageID = "admincli.incremental_import_short"
	MessageAdminCLIExportShort                 MessageID = "admincli.export_short"
	MessageAdminCLINeo4jCSVExportShort         MessageID = "admincli.neo4j_csv_export_short"
	MessageAdminCLIServerShort                 MessageID = "admincli.server_short"
	MessageAdminCLIServerStatusShort           MessageID = "admincli.server_status_short"
	MessageAdminCLIVersionShort                MessageID = "admincli.version_short"
	MessageAdminCLIDataDirectoryFlag           MessageID = "admincli.flag.data_directory"
	MessageAdminCLINodesFlag                   MessageID = "admincli.flag.nodes"
	MessageAdminCLIRelationshipsFlag           MessageID = "admincli.flag.relationships"
	MessageAdminCLIFromPathFlag                MessageID = "admincli.flag.from_path"
	MessageAdminCLISchemaFlag                  MessageID = "admincli.flag.schema"
	MessageAdminCLIBuildIndexesFlag            MessageID = "admincli.flag.build_indexes"
	MessageAdminCLISkipBadRelationshipsFlag    MessageID = "admincli.flag.skip_bad_relationships"
	MessageAdminCLISkipDuplicateNodesFlag      MessageID = "admincli.flag.skip_duplicate_nodes"
	MessageAdminCLINormalizeTypesFlag          MessageID = "admincli.flag.normalize_types"
	MessageAdminCLIIgnoreExtraColumnsFlag      MessageID = "admincli.flag.ignore_extra_columns"
	MessageAdminCLIIgnoreEmptyStringsFlag      MessageID = "admincli.flag.ignore_empty_strings"
	MessageAdminCLIReportFileFlag              MessageID = "admincli.flag.report_file"
	MessageAdminCLIIDTypeFlag                  MessageID = "admincli.flag.id_type"
	MessageAdminCLIBadToleranceFlag            MessageID = "admincli.flag.bad_tolerance"
	MessageAdminCLIChunkSizeFlag               MessageID = "admincli.flag.chunk_size"
	MessageAdminCLIDelimiterFlag               MessageID = "admincli.flag.delimiter"
	MessageAdminCLIArrayDelimiterFlag          MessageID = "admincli.flag.array_delimiter"
	MessageAdminCLIVectorDelimiterFlag         MessageID = "admincli.flag.vector_delimiter"
	MessageAdminCLIQuoteFlag                   MessageID = "admincli.flag.quote"
	MessageAdminCLIConstraintsFileFlag         MessageID = "admincli.flag.constraints_file"
	MessageAdminCLIVerboseFlag                 MessageID = "admincli.flag.verbose"
	MessageAdminCLIToPathFlag                  MessageID = "admincli.flag.to_path"
	MessageAdminCLIIncrementalNotImplemented   MessageID = "admincli.incremental_not_implemented"
	MessageAdminCLIDatabaseInfoNotImplemented  MessageID = "admincli.database_info_not_implemented"
	MessageAdminCLIServerStatusNotImplemented  MessageID = "admincli.server_status_not_implemented"
	MessageAdminCLIToPathRequired              MessageID = "admincli.to_path_required"
	MessageAdminCLIExactArgs                   MessageID = "admincli.exact_args"
	MessageAdminCLIUnknownCommand              MessageID = "admincli.unknown_command"
	MessageAdminCLIUsageHeading                MessageID = "admincli.help.usage_heading"
	MessageAdminCLIAliasesHeading              MessageID = "admincli.help.aliases_heading"
	MessageAdminCLIExamplesHeading             MessageID = "admincli.help.examples_heading"
	MessageAdminCLIAvailableCommandsHeading    MessageID = "admincli.help.available_commands_heading"
	MessageAdminCLIAdditionalCommandsHeading   MessageID = "admincli.help.additional_commands_heading"
	MessageAdminCLIFlagsHeading                MessageID = "admincli.help.flags_heading"
	MessageAdminCLIGlobalFlagsHeading          MessageID = "admincli.help.global_flags_heading"
	MessageAdminCLIAdditionalHelpTopicsHeading MessageID = "admincli.help.additional_topics_heading"
	MessageAdminCLIHelpMoreInformation         MessageID = "admincli.help.more_information"
	MessageAdminCLIHelpCommandShort            MessageID = "admincli.help.command_short"
	MessageAdminCLIHelpCommandLong             MessageID = "admincli.help.command_long"
	MessageAdminCLIHelpFlag                    MessageID = "admincli.help.flag"
	MessageAdminCLICompletionCommandShort      MessageID = "admincli.completion.command_short"
	MessageAdminCLICompletionCommandLong       MessageID = "admincli.completion.command_long"
)
const (
	MessageAdminImportOpenCSVFailed            MessageID = "adminimport.open_csv_failed"
	MessageAdminImportDatabaseNameRequired     MessageID = "adminimport.database_name_required"
	MessageAdminImportNodeSourceRequired       MessageID = "adminimport.node_source_required"
	MessageAdminImportStorageEngineRequired    MessageID = "adminimport.storage_engine_required"
	MessageAdminImportActualIDUnsupported      MessageID = "adminimport.actual_id_unsupported"
	MessageAdminImportRelationshipIDsRequired  MessageID = "adminimport.relationship_ids_required"
	MessageAdminImportRelationshipTypeRequired MessageID = "adminimport.relationship_type_required"
	MessageAdminImportInvalidVectorDimensions  MessageID = "adminimport.invalid_vector_dimensions"
	MessageAdminImportUnsupportedHeaderToken   MessageID = "adminimport.unsupported_header_token"
	MessageAdminImportUnsupportedPropertyType  MessageID = "adminimport.unsupported_property_type"
	MessageAdminImportEmptySource              MessageID = "adminimport.empty_source"
	MessageAdminImportRelationshipPrefixLimit  MessageID = "adminimport.relationship_prefix_limit"
	MessageAdminImportCustomQuoteUnsupported   MessageID = "adminimport.custom_quote_unsupported"
	MessageAdminImportZipSingleFileRequired    MessageID = "adminimport.zip_single_file_required"
	MessageAdminImportTargetNotEmpty           MessageID = "adminimport.target_not_empty"
	MessageAdminImportNoCSVFiles               MessageID = "adminimport.no_csv_files"
	MessageAdminImportNoNodeCSVFiles           MessageID = "adminimport.no_node_csv_files"
	MessageAdminExportOutputDirectoryRequired  MessageID = "adminimport.export_output_directory_required"
	MessageAdminExportCustomQuoteUnsupported   MessageID = "adminimport.export_custom_quote_unsupported"
	MessageAdminImportUnsupportedCSVHeader     MessageID = "adminimport.unsupported_csv_header"
	MessageAdminImportSchemaApplicationFailed  MessageID = "adminimport.schema_application_failed"
	MessageAdminImportDuplicateNodeID          MessageID = "adminimport.duplicate_node_id"
	MessageAdminImportDuplicateRelationshipID  MessageID = "adminimport.duplicate_relationship_id"
	MessageAdminImportDuplicateRelIDAtRow      MessageID = "adminimport.duplicate_relationship_id_at_row"
	MessageAdminImportBadStartRelationship     MessageID = "adminimport.bad_start_relationship"
	MessageAdminImportBadEndRelationship       MessageID = "adminimport.bad_end_relationship"
	MessageAdminImportBadStartTolerance        MessageID = "adminimport.bad_start_tolerance_exceeded"
	MessageAdminImportBadEndTolerance          MessageID = "adminimport.bad_end_tolerance_exceeded"
	MessageAdminImportOpenGzipCSVFailed        MessageID = "adminimport.open_gzip_csv_failed"
	MessageAdminImportOpenZipCSVFailed         MessageID = "adminimport.open_zip_csv_failed"
	MessageAdminImportOpenZipMemberFailed      MessageID = "adminimport.open_zip_member_failed"
	MessageAdminImportCSVParseError            MessageID = "adminimport.csv_parse_error"
	MessageAdminImportScanDirectoryFailed      MessageID = "adminimport.scan_directory_failed"
	MessageAdminImportReadHeaderFailed         MessageID = "adminimport.read_header_failed"
)
const (
	MessageUnsupportedGrantType  MessageID = "auth.unsupported_grant_type"
	MessageAPITokenAdminRequired MessageID = "auth.api_token_admin_required"
	MessageInvalidExpiresIn      MessageID = "auth.invalid_expires_in"
	MessageInvalidExpiresInHelp  MessageID = "auth.invalid_expires_in_help"
	MessageAPITokenFailed        MessageID = "auth.api_token_generation_failed"
	MessageOAuthCallbackError    MessageID = "auth.oauth_callback_error"
	MessageAuthorizationCode     MessageID = "auth.authorization_code_missing"
	MessageStateParameter        MessageID = "auth.state_parameter_missing"
	MessageNoUserContext         MessageID = "auth.user_context_missing"
	MessageOldPasswordIncorrect  MessageID = "auth.old_password_incorrect"
	MessageLogoutComplete        MessageID = "auth.logout_complete"
	MessagePasswordChanged       MessageID = "auth.password_changed"
	MessageProfileUpdated        MessageID = "auth.profile_updated"
	MessagePutRequired           MessageID = "server.method_put_required"
)
const (
	MessageCypherAdminDatabaseManagerUnavailable MessageID = "cypheradmin.database_manager_unavailable"
	MessageCypherAdminInvalidSyntax              MessageID = "cypheradmin.invalid_syntax"
	MessageCypherAdminDatabaseNameExpected       MessageID = "cypheradmin.database_name_expected"
	MessageCypherAdminDatabaseNameEmpty          MessageID = "cypheradmin.database_name_empty"
	MessageCypherAdminInvalidDatabaseName        MessageID = "cypheradmin.invalid_database_name"
	MessageCypherAdminDatabaseAlreadyExists      MessageID = "cypheradmin.database_already_exists"
	MessageCypherAdminCreateDatabaseFailed       MessageID = "cypheradmin.create_database_failed"
	MessageCypherAdminInvalidIdentifier          MessageID = "cypheradmin.invalid_identifier"
	MessageCypherAdminDatabaseDoesNotExist       MessageID = "cypheradmin.database_does_not_exist"
	MessageCypherAdminDropDatabaseFailed         MessageID = "cypheradmin.drop_database_failed"
	MessageCypherAdminAliasNameExpected          MessageID = "cypheradmin.alias_name_expected"
	MessageCypherAdminTermExpected               MessageID = "cypheradmin.term_expected"
	MessageCypherAdminClauseExpected             MessageID = "cypheradmin.clause_expected"
	MessageCypherAdminAliasNameEmpty             MessageID = "cypheradmin.alias_name_empty"
	MessageCypherAdminInvalidAliasName           MessageID = "cypheradmin.invalid_alias_name"
	MessageCypherAdminCreateAliasFailed          MessageID = "cypheradmin.create_alias_failed"
	MessageCypherAdminAliasDoesNotExist          MessageID = "cypheradmin.alias_does_not_exist"
	MessageCypherAdminDropAliasFailed            MessageID = "cypheradmin.drop_alias_failed"
	MessageCypherAdminKeywordExpected            MessageID = "cypheradmin.keyword_expected"
	MessageCypherAdminDatabaseNotFound           MessageID = "cypheradmin.database_not_found"
	MessageCypherAdminInvalidLimitsType          MessageID = "cypheradmin.invalid_limits_type"
	MessageCypherAdminLimitAssignmentExpected    MessageID = "cypheradmin.limit_assignment_expected"
	MessageCypherAdminInvalidLimitAssignment     MessageID = "cypheradmin.invalid_limit_assignment"
	MessageCypherAdminInvalidLimitValue          MessageID = "cypheradmin.invalid_limit_value"
	MessageCypherAdminInvalidDurationLimitValue  MessageID = "cypheradmin.invalid_duration_limit_value"
	MessageCypherAdminUnknownLimitName           MessageID = "cypheradmin.unknown_limit_name"
	MessageCypherAdminSetDatabaseLimitsFailed    MessageID = "cypheradmin.set_database_limits_failed"
)
const (
	MessageCypherANTLRParseEmptyQuery     MessageID = "cypherantlr.parse_empty_query"
	MessageCypherANTLRParseSyntaxError    MessageID = "cypherantlr.parse_syntax_error"
	MessageCypherANTLRValidateEmptyQuery  MessageID = "cypherantlr.validate_empty_query"
	MessageCypherANTLRValidateSyntaxError MessageID = "cypherantlr.validate_syntax_error"
)
const (
	MessageCypherCommandRoutingUnknownCommand                   MessageID = "cyphercommandrouting.unknown_command"
	MessageCypherCommandRoutingEmptyCommand                     MessageID = "cyphercommandrouting.empty_command"
	MessageCypherCommandRoutingShellUseDatabaseRequired         MessageID = "cyphercommandrouting.shell_use_database_required"
	MessageCypherCommandRoutingParameterMapRequired             MessageID = "cyphercommandrouting.parameter_map_required"
	MessageCypherCommandRoutingParameterArgumentRequired        MessageID = "cyphercommandrouting.parameter_argument_required"
	MessageCypherCommandRoutingParameterValueRequired           MessageID = "cyphercommandrouting.parameter_value_required"
	MessageCypherCommandRoutingParameterUsage                   MessageID = "cyphercommandrouting.parameter_usage"
	MessageCypherCommandRoutingParameterMapKeysStrings          MessageID = "cyphercommandrouting.parameter_map_keys_strings"
	MessageCypherCommandRoutingParameterMapEntryEmpty           MessageID = "cyphercommandrouting.parameter_map_entry_empty"
	MessageCypherCommandRoutingParameterMapEntryInvalid         MessageID = "cyphercommandrouting.parameter_map_entry_invalid"
	MessageCypherCommandRoutingParameterEvaluationFailed        MessageID = "cyphercommandrouting.parameter_evaluation_failed"
	MessageCypherCommandRoutingParameterProducedNoValue         MessageID = "cyphercommandrouting.parameter_produced_no_value"
	MessageCypherCommandRoutingParameterExpressionUnresolved    MessageID = "cyphercommandrouting.parameter_expression_unresolved"
	MessageCypherCommandRoutingCallTailSeedRequired             MessageID = "cyphercommandrouting.call_tail_seed_required"
	MessageCypherCommandRoutingCallTailLimitInvalid             MessageID = "cyphercommandrouting.call_tail_limit_invalid"
	MessageCypherCommandRoutingCallTailSkipInvalid              MessageID = "cyphercommandrouting.call_tail_skip_invalid"
	MessageCypherCommandRoutingWhereBooleanRequired             MessageID = "cyphercommandrouting.where_boolean_required"
	MessageCypherCommandRoutingUnknownProcedure                 MessageID = "cyphercommandrouting.unknown_procedure"
	MessageCypherCommandRoutingFabricNotPrepared                MessageID = "cyphercommandrouting.fabric_not_prepared"
	MessageCypherCommandRoutingFabricStorageTypeInvalid         MessageID = "cyphercommandrouting.fabric_storage_type_invalid"
	MessageCypherCommandRoutingFabricPreparedContextInvalid     MessageID = "cyphercommandrouting.fabric_prepared_context_invalid"
	MessageCypherCommandRoutingFabricConstituentsFailed         MessageID = "cyphercommandrouting.fabric_constituents_failed"
	MessageCypherCommandRoutingFabricShardTransactionFailed     MessageID = "cyphercommandrouting.fabric_shard_transaction_failed"
	MessageCypherCommandRoutingUseDatabaseRequired              MessageID = "cyphercommandrouting.use_database_required"
	MessageCypherCommandRoutingUseInvalid                       MessageID = "cyphercommandrouting.use_invalid"
	MessageCypherCommandRoutingUseBacktickUnterminated          MessageID = "cyphercommandrouting.use_backtick_unterminated"
	MessageCypherCommandRoutingGraphReferenceInvalid            MessageID = "cyphercommandrouting.graph_reference_invalid"
	MessageCypherCommandRoutingGraphReferenceArgumentRequired   MessageID = "cyphercommandrouting.graph_reference_argument_required"
	MessageCypherCommandRoutingGraphReferenceOpenParenExpected  MessageID = "cyphercommandrouting.graph_reference_open_paren_expected"
	MessageCypherCommandRoutingGraphReferenceUnterminated       MessageID = "cyphercommandrouting.graph_reference_unterminated"
	MessageCypherCommandRoutingGraphReferenceArgumentEmpty      MessageID = "cyphercommandrouting.graph_reference_argument_empty"
	MessageCypherCommandRoutingGraphReferenceStringUnterminated MessageID = "cyphercommandrouting.graph_reference_string_unterminated"
	MessageCypherCommandRoutingBacktickIdentifierUnterminated   MessageID = "cyphercommandrouting.backtick_identifier_unterminated"
	MessageCypherCommandRoutingUseConstituentOutsideComposite   MessageID = "cyphercommandrouting.use_constituent_outside_composite"
	MessageCypherCommandRoutingUseFailed                        MessageID = "cyphercommandrouting.use_failed"
	MessageCypherCommandRoutingUseBackendUnsupported            MessageID = "cyphercommandrouting.use_backend_unsupported"
	MessageCypherCommandRoutingUseDatabaseManagerUnavailable    MessageID = "cyphercommandrouting.use_database_manager_unavailable"
	MessageCypherCommandRoutingUseStorageTypeInvalid            MessageID = "cyphercommandrouting.use_storage_type_invalid"
	MessageCypherCommandRoutingUseDatabaseNotComposite          MessageID = "cyphercommandrouting.use_database_not_composite"
	MessageCypherCommandRoutingUnknownYieldColumn               MessageID = "cyphercommandrouting.unknown_yield_column"
	MessageCypherCommandRoutingProcedureMinArguments            MessageID = "cyphercommandrouting.procedure_min_arguments"
	MessageCypherCommandRoutingProcedureMaxArguments            MessageID = "cyphercommandrouting.procedure_max_arguments"
)
const (
	MessageCypherCompositeConstituentAliasExpected          MessageID = "cyphercomposite.constituent_alias_expected"
	MessageCypherCompositeConstituentAliasNameEmpty         MessageID = "cyphercomposite.constituent_alias_name_empty"
	MessageCypherCompositeConstituentAliasNameInvalid       MessageID = "cyphercomposite.constituent_alias_name_invalid"
	MessageCypherCompositeConstituentForDatabaseExpected    MessageID = "cyphercomposite.constituent_for_database_expected"
	MessageCypherCompositeConstituentDatabaseNameEmpty      MessageID = "cyphercomposite.constituent_database_name_empty"
	MessageCypherCompositeConstituentDatabaseNameInvalid    MessageID = "cyphercomposite.constituent_database_name_invalid"
	MessageCypherCompositeConstituentRemoteURIExpected      MessageID = "cyphercomposite.constituent_remote_uri_expected"
	MessageCypherCompositeConstituentRemoteURIInvalid       MessageID = "cyphercomposite.constituent_remote_uri_invalid"
	MessageCypherCompositeConstituentRemoteURIEmpty         MessageID = "cyphercomposite.constituent_remote_uri_empty"
	MessageCypherCompositeConstituentUserEmpty              MessageID = "cyphercomposite.constituent_user_empty"
	MessageCypherCompositeConstituentUserInvalid            MessageID = "cyphercomposite.constituent_user_invalid"
	MessageCypherCompositeConstituentPasswordEmpty          MessageID = "cyphercomposite.constituent_password_empty"
	MessageCypherCompositeConstituentPasswordInvalid        MessageID = "cyphercomposite.constituent_password_invalid"
	MessageCypherCompositeConstituentOIDCCredentialExpected MessageID = "cyphercomposite.constituent_oidc_credential_forwarding_expected"
	MessageCypherCompositeConstituentSecretRefExpected      MessageID = "cyphercomposite.constituent_secret_ref_expected"
	MessageCypherCompositeConstituentSecretRefEmpty         MessageID = "cyphercomposite.constituent_secret_ref_empty"
	MessageCypherCompositeConstituentSecretRefInvalid       MessageID = "cyphercomposite.constituent_secret_ref_invalid"
	MessageCypherCompositeConstituentTypeEmpty              MessageID = "cyphercomposite.constituent_type_empty"
	MessageCypherCompositeConstituentTypeInvalid            MessageID = "cyphercomposite.constituent_type_invalid"
	MessageCypherCompositeConstituentTypeUnsupported        MessageID = "cyphercomposite.constituent_type_unsupported"
	MessageCypherCompositeConstituentTypeContradictsAT      MessageID = "cyphercomposite.constituent_type_contradicts_at"
	MessageCypherCompositeConstituentAccessModeEmpty        MessageID = "cyphercomposite.constituent_access_mode_empty"
	MessageCypherCompositeConstituentAccessModeInvalid      MessageID = "cyphercomposite.constituent_access_mode_invalid"
	MessageCypherCompositeConstituentAccessModeUnsupported  MessageID = "cyphercomposite.constituent_access_mode_unsupported"
	MessageCypherCompositeConstituentUnexpectedToken        MessageID = "cyphercomposite.constituent_unexpected_token"
	MessageCypherCompositeConstituentAuthModesConflict      MessageID = "cyphercomposite.constituent_auth_modes_conflict"
	MessageCypherCompositeConstituentUserPasswordRequired   MessageID = "cyphercomposite.constituent_user_password_required"
	MessageCypherCompositeConstituentRemoteRequired         MessageID = "cyphercomposite.constituent_remote_required"
	MessageCypherCompositeDatabaseManagerUnavailable        MessageID = "cyphercomposite.database_manager_unavailable"
	MessageCypherCompositeCreateInvalidSyntax               MessageID = "cyphercomposite.create_invalid_syntax"
	MessageCypherCompositeCreateDatabaseNameExpected        MessageID = "cyphercomposite.create_database_name_expected"
	MessageCypherCompositeCreateDatabaseNameEmpty           MessageID = "cyphercomposite.create_database_name_empty"
	MessageCypherCompositeCreateTokenizeFailed              MessageID = "cyphercomposite.create_tokenize_failed"
	MessageCypherCompositeCreateConstituentRequired         MessageID = "cyphercomposite.create_constituent_required"
	MessageCypherCompositeCreateDatabaseFailed              MessageID = "cyphercomposite.create_database_failed"
	MessageCypherCompositeDropInvalidSyntax                 MessageID = "cyphercomposite.drop_invalid_syntax"
	MessageCypherCompositeDropDatabaseNameExpected          MessageID = "cyphercomposite.drop_database_name_expected"
	MessageCypherCompositeDropDatabaseNameEmpty             MessageID = "cyphercomposite.drop_database_name_empty"
	MessageCypherCompositeDropDatabaseFailed                MessageID = "cyphercomposite.drop_database_failed"
	MessageCypherCompositeShowConstituentsInvalidSyntax     MessageID = "cyphercomposite.show_constituents_invalid_syntax"
	MessageCypherCompositeShowConstituentsNameExpected      MessageID = "cyphercomposite.show_constituents_name_expected"
	MessageCypherCompositeGetConstituentsFailed             MessageID = "cyphercomposite.get_constituents_failed"
	MessageCypherCompositeAlterInvalidSyntax                MessageID = "cyphercomposite.alter_invalid_syntax"
	MessageCypherCompositeAlterDatabaseKeywordExpected      MessageID = "cyphercomposite.alter_database_keyword_expected"
	MessageCypherCompositeAlterDatabaseNameExpected         MessageID = "cyphercomposite.alter_database_name_expected"
	MessageCypherCompositeAlterDatabaseNameEmpty            MessageID = "cyphercomposite.alter_database_name_empty"
	MessageCypherCompositeAlterTokenizeFailed               MessageID = "cyphercomposite.alter_tokenize_failed"
	MessageCypherCompositeAlterAddAliasExpected             MessageID = "cyphercomposite.alter_add_alias_expected"
	MessageCypherCompositeAddAliasUnexpectedToken           MessageID = "cyphercomposite.add_alias_unexpected_token"
	MessageCypherCompositeAddConstituentFailed              MessageID = "cyphercomposite.add_constituent_failed"
	MessageCypherCompositeAlterDropAliasExpected            MessageID = "cyphercomposite.alter_drop_alias_expected"
	MessageCypherCompositeDropAliasNameEmpty                MessageID = "cyphercomposite.drop_alias_name_empty"
	MessageCypherCompositeRemoveConstituentFailed           MessageID = "cyphercomposite.remove_constituent_failed"
	MessageCypherCompositeAlterActionExpected               MessageID = "cyphercomposite.alter_action_expected"
)
const (
	MessageCypherCoreEmptyQuery                          MessageID = "cyphercore.empty_query"
	MessageCypherCoreCompositeTargetRequired             MessageID = "cyphercore.composite_target_required"
	MessageCypherCoreInvalidLabelName                    MessageID = "cyphercore.invalid_label_name"
	MessageCypherCoreInvalidLabelReserved                MessageID = "cyphercore.invalid_label_reserved"
	MessageCypherCoreInvalidPropertyKey                  MessageID = "cyphercore.invalid_property_key"
	MessageCypherCoreInvalidPropertyValue                MessageID = "cyphercore.invalid_property_value"
	MessageCypherCoreEmbeddingTransactionStorageRequired MessageID = "cyphercore.embedding_transaction_storage_required"
	MessageCypherCoreImplicitTransactionPrimeFailed      MessageID = "cyphercore.implicit_transaction_prime_failed"
	MessageCypherCoreImplicitTransactionStartFailed      MessageID = "cyphercore.implicit_transaction_start_failed"
	MessageCypherCoreImplicitTransactionPinFailed        MessageID = "cyphercore.implicit_transaction_pin_failed"
	MessageCypherCoreImplicitTransactionConfigureFailed  MessageID = "cyphercore.implicit_transaction_configure_failed"
	MessageCypherCoreImplicitTransactionWALBeginFailed   MessageID = "cyphercore.implicit_transaction_wal_begin_failed"
	MessageCypherCoreImplicitTransactionCommitFailed     MessageID = "cyphercore.implicit_transaction_commit_failed"
	MessageCypherCoreEmbeddingConfiguredRequired         MessageID = "cyphercore.embedding_configured_required"
	MessageCypherCoreEmbeddingChunkFailed                MessageID = "cyphercore.embedding_chunk_failed"
	MessageCypherCoreEmbeddingNodeFailed                 MessageID = "cyphercore.embedding_node_failed"
	MessageCypherCoreEmbeddingEmptyVector                MessageID = "cyphercore.embedding_empty_vector"
	MessageCypherCoreOptionalMatchRequired               MessageID = "cyphercore.optional_match_required"
	MessageCypherCoreUnterminatedStringLiteral           MessageID = "cyphercore.unterminated_string_literal"
	MessageCypherCoreParseFailed                         MessageID = "cyphercore.parse_failed"
	MessageCypherCoreCaseEnvelopeInvalid                 MessageID = "cyphercore.case_envelope_invalid"
	MessageCypherCoreCaseWhenRequired                    MessageID = "cyphercore.case_when_required"
	MessageCypherCoreCaseThenRequired                    MessageID = "cyphercore.case_then_required"
	MessageCypherCoreFulltextUnexpectedToken             MessageID = "cyphercore.fulltext_unexpected_token"
	MessageCypherCoreFulltextNumberAfterBoostExpected    MessageID = "cyphercore.fulltext_number_after_boost_expected"
	MessageCypherCoreFulltextBadBoost                    MessageID = "cyphercore.fulltext_bad_boost"
	MessageCypherCoreFulltextClosingParenthesisRequired  MessageID = "cyphercore.fulltext_closing_parenthesis_required"
	MessageCypherCoreFulltextRangeTORequired             MessageID = "cyphercore.fulltext_range_to_required"
	MessageCypherCoreFulltextRangeCloseRequired          MessageID = "cyphercore.fulltext_range_close_required"
	MessageCypherCoreFulltextRangeEndpointRequired       MessageID = "cyphercore.fulltext_range_endpoint_required"
	MessageCypherCoreFulltextBadRegex                    MessageID = "cyphercore.fulltext_bad_regex"
	MessageCypherCoreFulltextBadWildcard                 MessageID = "cyphercore.fulltext_bad_wildcard"
	MessageCypherCoreIndexHintNotFound                   MessageID = "cyphercore.index_hint_not_found"
	MessageCypherCoreExecutionPlanBuildFailed            MessageID = "cyphercore.execution_plan_build_failed"
	MessageCypherCoreTypedDecodeRowFailed                MessageID = "cyphercore.typed_decode_row_failed"
	MessageCypherCoreTypedDestinationPointerRequired     MessageID = "cyphercore.typed_destination_pointer_required"
	MessageCypherCoreTypedDestinationUnsupported         MessageID = "cyphercore.typed_destination_unsupported"
	MessageCypherCoreTypedFieldFailed                    MessageID = "cyphercore.typed_field_failed"
	MessageCypherCoreTypedTimeParseFailed                MessageID = "cyphercore.typed_time_parse_failed"
	MessageCypherCoreTypedAssignmentFailed               MessageID = "cyphercore.typed_assignment_failed"
	MessageCypherCoreEmbedderNotConfigured               MessageID = "cyphercore.embedder_not_configured"
	MessageCypherCoreEmbeddingNoOutput                   MessageID = "cyphercore.embedding_no_output"
)
const (
	MessageCypherGraphProceduresGraphNameRequired             MessageID = "cyphergraphprocedures.graph_name_required"
	MessageCypherGraphProceduresStreamNodesFailed             MessageID = "cyphergraphprocedures.stream_nodes_failed"
	MessageCypherGraphProceduresStreamEdgesFailed             MessageID = "cyphergraphprocedures.stream_edges_failed"
	MessageCypherGraphProceduresGraphDoesNotExist             MessageID = "cyphergraphprocedures.graph_does_not_exist"
	MessageCypherGraphProceduresGraphDoesNotExistProjectFirst MessageID = "cyphergraphprocedures.graph_does_not_exist_project_first"
	MessageCypherGraphProceduresBuildGraphFailed              MessageID = "cyphergraphprocedures.build_graph_failed"
	MessageCypherGraphProceduresInvalidProcedureCallSyntax    MessageID = "cyphergraphprocedures.invalid_procedure_call_syntax"
	MessageCypherGraphProceduresVariableNotFound              MessageID = "cyphergraphprocedures.variable_not_found"
	MessageCypherGraphProceduresSourceNodeRequired            MessageID = "cyphergraphprocedures.source_node_required"
)
const (
	MessageCypherInvariantsPipelineCreateFailed                 MessageID = "cypherinvariants.pipeline_create_failed"
	MessageCypherInvariantsDeleteByPrefixTransactionUnsupported MessageID = "cypherinvariants.delete_by_prefix_transaction_unsupported"
)
const (
	MessageCypherKnowledgePolicyExpectedAfter              MessageID = "cypherknowledgepolicy.expected_after"
	MessageCypherKnowledgePolicyProfileNameExpectedAfter   MessageID = "cypherknowledgepolicy.profile_name_expected_after"
	MessageCypherKnowledgePolicyExpectedAfterProfileName   MessageID = "cypherknowledgepolicy.expected_after_profile_name"
	MessageCypherKnowledgePolicyPolicyNameExpectedAfter    MessageID = "cypherknowledgepolicy.policy_name_expected_after"
	MessageCypherKnowledgePolicyLabelExpectedAfterColon    MessageID = "cypherknowledgepolicy.label_expected_after_colon"
	MessageCypherKnowledgePolicyEdgeTypeExpectedAfterColon MessageID = "cypherknowledgepolicy.edge_type_expected_after_colon"
	MessageCypherKnowledgePolicyEdgePatternExpectedFor     MessageID = "cypherknowledgepolicy.edge_pattern_expected_for"
	MessageCypherKnowledgePolicyEdgePatternExpectedIn      MessageID = "cypherknowledgepolicy.edge_pattern_expected_in"
	MessageCypherKnowledgePolicyNumberExpectedAfter        MessageID = "cypherknowledgepolicy.number_expected_after"
	MessageCypherKnowledgePolicySecondsExpectedAfter       MessageID = "cypherknowledgepolicy.seconds_expected_after"
	MessageCypherKnowledgePolicyKalmanClosingBraceExpected MessageID = "cypherknowledgepolicy.kalman_closing_brace_expected"
	MessageCypherKnowledgePolicyExpressionExpectedAfterSet MessageID = "cypherknowledgepolicy.expression_expected_after_set"
	MessageCypherKnowledgePolicyInvalidValue               MessageID = "cypherknowledgepolicy.invalid_value"
	MessageCypherKnowledgePolicyUnknownOption              MessageID = "cypherknowledgepolicy.unknown_option"
	MessageCypherKnowledgePolicyUnknownKalmanConfigKey     MessageID = "cypherknowledgepolicy.unknown_kalman_config_key"
	MessageCypherKnowledgePolicyUnsupportedCommand         MessageID = "cypherknowledgepolicy.unsupported_command"
	MessageCypherKnowledgePolicySchemaManagerUnavailable   MessageID = "cypherknowledgepolicy.schema_manager_unavailable"
	MessageCypherKnowledgePolicyUnsupportedCommandType     MessageID = "cypherknowledgepolicy.unsupported_command_type"
	MessageCypherKnowledgePolicyOperationFailed            MessageID = "cypherknowledgepolicy.operation_failed"
	MessageCypherKnowledgePolicyResolveTargetRequired      MessageID = "cypherknowledgepolicy.resolve_target_required"
	MessageCypherKnowledgePolicyBindingTableUnavailable    MessageID = "cypherknowledgepolicy.binding_table_unavailable"
	MessageCypherKnowledgePolicyEntityNotFound             MessageID = "cypherknowledgepolicy.entity_not_found"
	MessageCypherKnowledgePolicyArgumentStringRequired     MessageID = "cypherknowledgepolicy.argument_string_required"
	MessageCypherKnowledgePolicyDeindexBadgerRequired      MessageID = "cypherknowledgepolicy.deindex_badger_required"
	MessageCypherKnowledgePolicyDecayOptionsMapRequired    MessageID = "cypherknowledgepolicy.decay_options_map_required"
	MessageCypherKnowledgePolicyUnknownDecayOption         MessageID = "cypherknowledgepolicy.unknown_decay_option"
	MessageCypherKnowledgePolicyReasonNoEntityArgument     MessageID = "cypherknowledgepolicy.reason_no_entity_argument"
	MessageCypherKnowledgePolicyReasonEntityNotFound       MessageID = "cypherknowledgepolicy.reason_entity_not_found"
	MessageCypherKnowledgePolicyReasonNoBadgerEngine       MessageID = "cypherknowledgepolicy.reason_no_badger_engine"
	MessageCypherKnowledgePolicyReasonDecayDisabled        MessageID = "cypherknowledgepolicy.reason_decay_disabled"
	MessageCypherKnowledgePolicyReasonNoDecayProfile       MessageID = "cypherknowledgepolicy.reason_no_decay_profile"
	MessageCypherKnowledgePolicyReasonNoDecay              MessageID = "cypherknowledgepolicy.reason_no_decay"
)
const (
	MessageCypherMatchingMatchPatternRequired                    MessageID = "cyphermatching.match_pattern_required"
	MessageCypherMatchingMatchNodePatternRequired                MessageID = "cyphermatching.match_node_pattern_required"
	MessageCypherMatchingReturnExpressionRequired                MessageID = "cyphermatching.return_expression_required"
	MessageCypherMatchingReturnExpressionEmpty                   MessageID = "cyphermatching.return_expression_empty"
	MessageCypherMatchingStorageFailed                           MessageID = "cyphermatching.storage_failed"
	MessageCypherMatchingCollectSubqueryFailed                   MessageID = "cyphermatching.collect_subquery_failed"
	MessageCypherMatchingMatchUnwindClausesRequired              MessageID = "cyphermatching.match_unwind_clauses_required"
	MessageCypherMatchingUnwindASRequired                        MessageID = "cyphermatching.unwind_as_required"
	MessageCypherMatchingWithReturnClausesRequired               MessageID = "cyphermatching.with_return_clauses_required"
	MessageCypherMatchingWithOptionalMatchReturnClausesRequired  MessageID = "cyphermatching.with_optional_match_return_clauses_required"
	MessageCypherMatchingOrderByParseFailed                      MessageID = "cyphermatching.order_by_parse_failed"
	MessageCypherMatchingMatchPatternVariableMissing             MessageID = "cyphermatching.match_pattern_variable_missing"
	MessageCypherMatchingTraversalPatternInvalid                 MessageID = "cyphermatching.traversal_pattern_invalid"
	MessageCypherMatchingReturnAfterWithRequired                 MessageID = "cyphermatching.return_after_with_required"
	MessageCypherMatchingSkipParseFailed                         MessageID = "cyphermatching.skip_parse_failed"
	MessageCypherMatchingLimitParseFailed                        MessageID = "cyphermatching.limit_parse_failed"
	MessageCypherMatchingShortestPathQueryExpected               MessageID = "cyphermatching.shortest_path_query_expected"
	MessageCypherMatchingShortestPathSyntaxInvalid               MessageID = "cyphermatching.shortest_path_syntax_invalid"
	MessageCypherMatchingPathPatternInvalid                      MessageID = "cyphermatching.path_pattern_invalid"
	MessageCypherMatchingShortestPathStartVariableUnresolved     MessageID = "cyphermatching.shortest_path_start_variable_unresolved"
	MessageCypherMatchingShortestPathEndVariableUnresolved       MessageID = "cyphermatching.shortest_path_end_variable_unresolved"
	MessageCypherMatchingOptionalMatchNodeEndpointMissing        MessageID = "cyphermatching.optional_match_node_endpoint_missing"
	MessageCypherMatchingOptionalMatchNodeEndpointUnterminated   MessageID = "cyphermatching.optional_match_node_endpoint_unterminated"
	MessageCypherMatchingOptionalMatchTargetEndpointMissing      MessageID = "cyphermatching.optional_match_target_endpoint_missing"
	MessageCypherMatchingOptionalMatchTargetEndpointUnterminated MessageID = "cyphermatching.optional_match_target_endpoint_unterminated"
	MessageCypherMatchingInitialTraversalMatchFailed             MessageID = "cyphermatching.initial_traversal_match_failed"
	MessageCypherMatchingAggregateCallExpected                   MessageID = "cyphermatching.aggregate_call_expected"
	MessageCypherMatchingFunctionParametersInsufficient          MessageID = "cyphermatching.function_parameters_insufficient"
)
const (
	MessageCypherMergeClauseNotFound                   MessageID = "cyphermerge.clause_not_found"
	MessageCypherMergeCreateNodeFailed                 MessageID = "cyphermerge.create_node_failed"
	MessageCypherMergeInvalidMatchQuery                MessageID = "cyphermerge.invalid_match_query"
	MessageCypherMergeMatchExecutionFailed             MessageID = "cyphermerge.match_execution_failed"
	MessageCypherMergeUnwindASRequired                 MessageID = "cyphermerge.unwind_as_required"
	MessageCypherMergeUnwindParameterNotFound          MessageID = "cyphermerge.unwind_parameter_not_found"
	MessageCypherMergeMatchLabelLookupFailed           MessageID = "cyphermerge.match_label_lookup_failed"
	MessageCypherMergeMatchAllNodesFailed              MessageID = "cyphermerge.match_all_nodes_failed"
	MessageCypherMergeMalformedRelationshipPattern     MessageID = "cyphermerge.malformed_relationship_pattern"
	MessageCypherMergeFindRelationshipFailed           MessageID = "cyphermerge.find_relationship_failed"
	MessageCypherMergeCreateRelationshipFailed         MessageID = "cyphermerge.create_relationship_failed"
	MessageCypherMergeUpdateEdgePropertyFailed         MessageID = "cyphermerge.update_edge_property_failed"
	MessageCypherMergeInitialMergeFailed               MessageID = "cyphermerge.initial_merge_failed"
	MessageCypherMergeForeachFailed                    MessageID = "cyphermerge.foreach_failed"
	MessageCypherMergeSegmentClauseNotFound            MessageID = "cyphermerge.segment_clause_not_found"
	MessageCypherMergeCreateNodeSegmentFailed          MessageID = "cyphermerge.create_node_segment_failed"
	MessageCypherMergeMatchSegmentClauseNotFound       MessageID = "cyphermerge.match_segment_clause_not_found"
	MessageCypherMergeNodePatternParseFailed           MessageID = "cyphermerge.node_pattern_parse_failed"
	MessageCypherMergeRelationshipStartMissing         MessageID = "cyphermerge.relationship_start_missing"
	MessageCypherMergeRelationshipStartParenMissing    MessageID = "cyphermerge.relationship_start_paren_missing"
	MessageCypherMergeRelationshipBracketsMissing      MessageID = "cyphermerge.relationship_brackets_missing"
	MessageCypherMergeRelationshipEndMissing           MessageID = "cyphermerge.relationship_end_missing"
	MessageCypherMergeStartVariableNotBound            MessageID = "cyphermerge.start_variable_not_bound"
	MessageCypherMergeEndVariableNotBound              MessageID = "cyphermerge.end_variable_not_bound"
	MessageCypherMergeFindRelationshipSegmentFailed    MessageID = "cyphermerge.find_relationship_segment_failed"
	MessageCypherMergeRelationshipFailed               MessageID = "cyphermerge.relationship_failed"
	MessageCypherMergeNodeFailed                       MessageID = "cyphermerge.node_failed"
	MessageCypherMergeOptionalMatchFailed              MessageID = "cyphermerge.optional_match_failed"
	MessageCypherMergeMatchFailed                      MessageID = "cyphermerge.match_failed"
	MessageCypherMergeCreateNodeVariableRequired       MessageID = "cyphermerge.create_node_variable_required"
	MessageCypherMergeInvalidLabelName                 MessageID = "cyphermerge.invalid_label_name"
	MessageCypherMergeInvalidPropertyKey               MessageID = "cyphermerge.invalid_property_key"
	MessageCypherMergeInvalidPropertyValue             MessageID = "cyphermerge.invalid_property_value"
	MessageCypherMergePipelineCreateNodeFailed         MessageID = "cyphermerge.pipeline_create_node_failed"
	MessageCypherMergeRelationshipPatternParseFailed   MessageID = "cyphermerge.relationship_pattern_parse_failed"
	MessageCypherMergeVariableNotFound                 MessageID = "cyphermerge.variable_not_found"
	MessageCypherMergeInlineNodeCreateFailed           MessageID = "cyphermerge.inline_node_create_failed"
	MessageCypherMergeSourceResolutionFailed           MessageID = "cyphermerge.source_resolution_failed"
	MessageCypherMergeTargetResolutionFailed           MessageID = "cyphermerge.target_resolution_failed"
	MessageCypherMergeSourceNodeIDEmpty                MessageID = "cyphermerge.source_node_id_empty"
	MessageCypherMergeTargetNodeIDEmpty                MessageID = "cyphermerge.target_node_id_empty"
	MessageCypherMergeRelationshipTypeRequired         MessageID = "cyphermerge.relationship_type_required"
	MessageCypherMergeCreateEdgeFailed                 MessageID = "cyphermerge.create_edge_failed"
	MessageCypherMergeUnknownFunction                  MessageID = "cyphermerge.unknown_function"
	MessageCypherMergePipelineWithRequired             MessageID = "cyphermerge.pipeline_with_required"
	MessageCypherMergeMatchPatternVariableRequired     MessageID = "cyphermerge.match_pattern_variable_required"
	MessageCypherMergeRelationshipCreateCollisions     MessageID = "cyphermerge.relationship_create_collisions"
	MessageCypherMergeRelationshipIdentityExhausted    MessageID = "cyphermerge.relationship_identity_exhausted"
	MessageCypherMergeMapLiteralEnclosureRequired      MessageID = "cyphermerge.map_literal_enclosure_required"
	MessageCypherMergeMapEntryEmpty                    MessageID = "cyphermerge.map_entry_empty"
	MessageCypherMergeMapEntryInvalid                  MessageID = "cyphermerge.map_entry_invalid"
	MessageCypherMergeMapKeyEmpty                      MessageID = "cyphermerge.map_key_empty"
	MessageCypherMergeMapValueEmpty                    MessageID = "cyphermerge.map_value_empty"
	MessageCypherMergeBulkCreateNodesFailed            MessageID = "cyphermerge.bulk_create_nodes_failed"
	MessageCypherMergeBulkCreateEdgesFailed            MessageID = "cyphermerge.bulk_create_edges_failed"
	MessageCypherMergeCreateEdgeStartNotBound          MessageID = "cyphermerge.create_edge_start_not_bound"
	MessageCypherMergeCreateEdgeEndNotBound            MessageID = "cyphermerge.create_edge_end_not_bound"
	MessageCypherMergeRelationshipEndpointsNotBound    MessageID = "cyphermerge.relationship_endpoints_not_bound"
	MessageCypherMergeSelectRelationshipIdentityFailed MessageID = "cyphermerge.select_relationship_identity_failed"
	MessageCypherMergeUpdateEdgeFailed                 MessageID = "cyphermerge.update_edge_failed"
	MessageCypherMergeGetNodesByLabelFailed            MessageID = "cyphermerge.get_nodes_by_label_failed"
	MessageCypherMergeGetEdgesBetweenFailed            MessageID = "cyphermerge.get_edges_between_failed"
)
const (
	MessageCypherMutationsInvalidLabelName                    MessageID = "cyphermutations.invalid_label_name"
	MessageCypherMutationsInvalidLabelReserved                MessageID = "cyphermutations.invalid_label_reserved"
	MessageCypherMutationsInvalidPropertyKey                  MessageID = "cyphermutations.invalid_property_key"
	MessageCypherMutationsInvalidPropertyValue                MessageID = "cyphermutations.invalid_property_value"
	MessageCypherMutationsCreateNodeFailed                    MessageID = "cyphermutations.create_node_failed"
	MessageCypherMutationsCreateSourceNodeFailed              MessageID = "cyphermutations.create_source_node_failed"
	MessageCypherMutationsCreateTargetNodeFailed              MessageID = "cyphermutations.create_target_node_failed"
	MessageCypherMutationsInvalidRelationshipType             MessageID = "cyphermutations.invalid_relationship_type"
	MessageCypherMutationsInvalidRelationshipPropertyKey      MessageID = "cyphermutations.invalid_relationship_property_key"
	MessageCypherMutationsCreateRelationshipFailed            MessageID = "cyphermutations.create_relationship_failed"
	MessageCypherMutationsInvalidPropertyMapCause             MessageID = "cyphermutations.invalid_property_map_cause"
	MessageCypherMutationsRelationshipPatternMustStartNode    MessageID = "cyphermutations.relationship_pattern_must_start_node"
	MessageCypherMutationsRelationshipPatternUnmatchedParen   MessageID = "cyphermutations.relationship_pattern_unmatched_parenthesis"
	MessageCypherMutationsRelationshipPatternUnmatchedBracket MessageID = "cyphermutations.relationship_pattern_unmatched_bracket"
	MessageCypherMutationsRelationshipPatternForwardExpected  MessageID = "cyphermutations.relationship_pattern_forward_node_expected"
	MessageCypherMutationsRelationshipPatternArrowExpected    MessageID = "cyphermutations.relationship_pattern_arrow_node_expected"
	MessageCypherMutationsRelationshipPatternSecondUnmatched  MessageID = "cyphermutations.relationship_pattern_second_node_unmatched_parenthesis"
	MessageCypherMutationsMatchLabelLookupFailed              MessageID = "cyphermutations.match_label_lookup_failed"
	MessageCypherMutationsMatchAllNodesFailed                 MessageID = "cyphermutations.match_all_nodes_failed"
	MessageCypherMutationsRelationshipExistenceCheckFailed    MessageID = "cyphermutations.relationship_existence_check_failed"
	MessageCypherMutationsAddLabelFailed                      MessageID = "cyphermutations.add_label_failed"
	MessageCypherMutationsSetAssignmentParameterNameRequired  MessageID = "cyphermutations.set_assignment_parameter_name_required"
	MessageCypherMutationsSetAssignmentParametersRequired     MessageID = "cyphermutations.set_assignment_parameters_required"
	MessageCypherMutationsSetAssignmentParameterNotFound      MessageID = "cyphermutations.set_assignment_parameter_not_found"
	MessageCypherMutationsReplaceNodePropertiesFailed         MessageID = "cyphermutations.replace_node_properties_failed"
	MessageCypherMutationsReplaceEdgePropertiesFailed         MessageID = "cyphermutations.replace_edge_properties_failed"
	MessageCypherMutationsUnknownSetVariable                  MessageID = "cyphermutations.unknown_set_variable"
	MessageCypherMutationsUpdateNodePropertyFailed            MessageID = "cyphermutations.update_node_property_failed"
	MessageCypherMutationsUpdateEdgePropertyFailed            MessageID = "cyphermutations.update_edge_property_failed"
	MessageCypherMutationsResolveSourceNodeFailed             MessageID = "cyphermutations.resolve_source_node_failed"
	MessageCypherMutationsResolveTargetNodeFailed             MessageID = "cyphermutations.resolve_target_node_failed"
	MessageCypherMutationsRelationshipPropertiesInvalid       MessageID = "cyphermutations.relationship_properties_invalid"
	MessageCypherMutationsVariableNotFound                    MessageID = "cyphermutations.variable_not_found"
	MessageCypherMutationsCreateWithDeleteInvalid             MessageID = "cyphermutations.create_with_delete_invalid"
	MessageCypherMutationsCreateFailed                        MessageID = "cyphermutations.create_failed"
	MessageCypherMutationsDeleteFailed                        MessageID = "cyphermutations.delete_failed"
	MessageCypherMutationsCreateSetClauseMissing              MessageID = "cyphermutations.create_set_clause_missing"
	MessageCypherMutationsCreateInCreateSetFailed             MessageID = "cyphermutations.create_in_create_set_failed"
	MessageCypherMutationsCreateSetWithContinuationRequired   MessageID = "cyphermutations.create_set_with_continuation_required"
	MessageCypherMutationsWithClauseEmpty                     MessageID = "cyphermutations.with_clause_empty"
	MessageCypherMutationsCreateSetTrailingClauseUnsupported  MessageID = "cyphermutations.create_set_trailing_clause_unsupported"
	MessageCypherMutationsSetMergeSyntaxInvalid               MessageID = "cyphermutations.set_merge_syntax_invalid"
	MessageCypherMutationsSetMergeParameterNameRequired       MessageID = "cyphermutations.set_merge_parameter_name_required"
	MessageCypherMutationsSetMergeParametersRequired          MessageID = "cyphermutations.set_merge_parameters_required"
	MessageCypherMutationsSetMergeParameterNotFound           MessageID = "cyphermutations.set_merge_parameter_not_found"
	MessageCypherMutationsSetMergeParseFailed                 MessageID = "cyphermutations.set_merge_parse_failed"
	MessageCypherMutationsSetMergeMapLiteralRequired          MessageID = "cyphermutations.set_merge_map_literal_required"
	MessageCypherMutationsSetMergeMapVariableNotFound         MessageID = "cyphermutations.set_merge_map_variable_not_found"
	MessageCypherMutationsUpdateNodeFailed                    MessageID = "cyphermutations.update_node_failed"
	MessageCypherMutationsUpdateEdgeFailed                    MessageID = "cyphermutations.update_edge_failed"
	MessageCypherMutationsUnknownSetMergeVariable             MessageID = "cyphermutations.unknown_set_merge_variable"
	MessageCypherMutationsRelationshipCreateFailed            MessageID = "cyphermutations.relationship_create_failed"
	MessageCypherMutationsNodeCreateFailed                    MessageID = "cyphermutations.node_create_failed"
	MessageCypherMutationsDeleteMatchRequired                 MessageID = "cyphermutations.delete_match_required"
	MessageCypherMutationsDeleteVariablesRequired             MessageID = "cyphermutations.delete_variables_required"
	MessageCypherMutationsDetachDeleteKeywordsRequired        MessageID = "cyphermutations.detach_delete_keywords_required"
	MessageCypherMutationsSetMatchRequired                    MessageID = "cyphermutations.set_match_required"
	MessageCypherMutationsSetAssignmentRequired               MessageID = "cyphermutations.set_assignment_required"
	MessageCypherMutationsSetMergeVariableRequired            MessageID = "cyphermutations.set_merge_variable_required"
	MessageCypherMutationsSetMergeMapScopeRequired            MessageID = "cyphermutations.set_merge_map_scope_required"
	MessageCypherMutationsSetMergeUpdateFailed                MessageID = "cyphermutations.set_merge_update_failed"
	MessageCypherMutationsSetEntityReplaceFailed              MessageID = "cyphermutations.set_entity_replace_failed"
	MessageCypherMutationsSetEntityRequired                   MessageID = "cyphermutations.set_entity_required"
	MessageCypherMutationsSetPropertyFailed                   MessageID = "cyphermutations.set_property_failed"
	MessageCypherMutationsSetPropertyEntityRequired           MessageID = "cyphermutations.set_property_entity_required"
	MessageCypherMutationsUnwindClauseExpected                MessageID = "cyphermutations.unwind_clause_expected"
	MessageCypherMutationsUnwindASRequired                    MessageID = "cyphermutations.unwind_as_required"
	MessageCypherMutationsUnwindVariableRequired              MessageID = "cyphermutations.unwind_variable_required"
	MessageCypherMutationsUnwindSetReturnRequired             MessageID = "cyphermutations.unwind_set_return_required"
	MessageCypherMutationsUnwindASVariableNonEmpty            MessageID = "cyphermutations.unwind_as_variable_non_empty"
	MessageCypherMutationsWithExpressionRequired              MessageID = "cyphermutations.with_expression_required"
	MessageCypherMutationsSetMergeOperatorExpected            MessageID = "cyphermutations.set_merge_operator_expected"
	MessageCypherMutationsSetMergeStringKeysRequired          MessageID = "cyphermutations.set_merge_string_keys_required"
	MessageCypherMutationsSetMergeMapRequired                 MessageID = "cyphermutations.set_merge_map_required"
	MessageCypherMutationsRemoveMatchRequired                 MessageID = "cyphermutations.remove_match_required"
	MessageCypherMutationsUnwindKeysUnsupported               MessageID = "cyphermutations.unwind_keys_unsupported"
	MessageCypherMutationsUnwindParameterNameRequired         MessageID = "cyphermutations.unwind_parameter_name_required"
	MessageCypherMutationsUnwindParametersRequired            MessageID = "cyphermutations.unwind_parameters_required"
	MessageCypherMutationsUnwindParameterNotFound             MessageID = "cyphermutations.unwind_parameter_not_found"
	MessageCypherMutationsUnwindMutationFailed                MessageID = "cyphermutations.unwind_mutation_failed"
	MessageCypherMutationsUnwindMatchFailed                   MessageID = "cyphermutations.unwind_match_failed"
	MessageCypherMutationsUnwindMergeCreateFailed             MessageID = "cyphermutations.unwind_merge_create_failed"
	MessageCypherMutationsUnwindMergeUpdateFailed             MessageID = "cyphermutations.unwind_merge_update_failed"
	MessageCypherMutationsUnwindMatchUpdateFailed             MessageID = "cyphermutations.unwind_match_update_failed"
	MessageCypherMutationsUnwindRelationshipLookupFailed      MessageID = "cyphermutations.unwind_relationship_lookup_failed"
	MessageCypherMutationsUnwindRelationshipAssignmentFailed  MessageID = "cyphermutations.unwind_relationship_assignment_failed"
	MessageCypherMutationsUnwindRelationshipCreateFailed      MessageID = "cyphermutations.unwind_relationship_create_failed"
	MessageCypherMutationsUnwindRelationshipUpdateFailed      MessageID = "cyphermutations.unwind_relationship_update_failed"
	MessageCypherMutationsUnwindFixedChainFailed              MessageID = "cyphermutations.unwind_fixed_chain_failed"
	MessageCypherMutationsUnwindClauseMissing                 MessageID = "cyphermutations.unwind_clause_missing"
	MessageCypherMutationsUnwindFirstASRequired               MessageID = "cyphermutations.unwind_first_as_required"
	MessageCypherMutationsUnwindDoubleMalformed               MessageID = "cyphermutations.unwind_double_malformed"
	MessageCypherMutationsUnwindSecondExpected                MessageID = "cyphermutations.unwind_second_expected"
	MessageCypherMutationsUnwindSecondASRequired              MessageID = "cyphermutations.unwind_second_as_required"
	MessageCypherMutationsWithOptionalReturnRequired          MessageID = "cyphermutations.with_optional_return_required"
	MessageCypherMutationsWithReturnRequired                  MessageID = "cyphermutations.with_return_required"
	MessageCypherMutationsForeachParenthesesRequired          MessageID = "cyphermutations.foreach_parentheses_required"
	MessageCypherMutationsForeachBalancedParenthesesRequired  MessageID = "cyphermutations.foreach_balanced_parentheses_required"
	MessageCypherMutationsForeachInRequired                   MessageID = "cyphermutations.foreach_in_required"
	MessageCypherMutationsForeachSeparatorRequired            MessageID = "cyphermutations.foreach_separator_required"
)
const (
	MessageCypherProcedureMetadataDbAwaitIndex                                  MessageID = "cypherproceduremetadata.db_awaitindex"
	MessageCypherProcedureMetadataDbAwaitIndexes                                MessageID = "cypherproceduremetadata.db_awaitindexes"
	MessageCypherProcedureMetadataDbClearQueryCaches                            MessageID = "cypherproceduremetadata.db_clearquerycaches"
	MessageCypherProcedureMetadataDbConstraints                                 MessageID = "cypherproceduremetadata.db_constraints"
	MessageCypherProcedureMetadataDbCreateSetNodeVectorProperty                 MessageID = "cypherproceduremetadata.db_create_setnodevectorproperty"
	MessageCypherProcedureMetadataDbCreateSetRelationshipVectorProperty         MessageID = "cypherproceduremetadata.db_create_setrelationshipvectorproperty"
	MessageCypherProcedureMetadataDbIndexFulltextCreateNodeIndex                MessageID = "cypherproceduremetadata.db_index_fulltext_createnodeindex"
	MessageCypherProcedureMetadataDbIndexFulltextCreateRelationshipIndex        MessageID = "cypherproceduremetadata.db_index_fulltext_createrelationshipindex"
	MessageCypherProcedureMetadataDbIndexFulltextDrop                           MessageID = "cypherproceduremetadata.db_index_fulltext_drop"
	MessageCypherProcedureMetadataDbIndexFulltextListAvailableAnalyzers         MessageID = "cypherproceduremetadata.db_index_fulltext_listavailableanalyzers"
	MessageCypherProcedureMetadataDbIndexFulltextQueryNodes                     MessageID = "cypherproceduremetadata.db_index_fulltext_querynodes"
	MessageCypherProcedureMetadataDbIndexFulltextQueryRelationships             MessageID = "cypherproceduremetadata.db_index_fulltext_queryrelationships"
	MessageCypherProcedureMetadataDbIndexStats                                  MessageID = "cypherproceduremetadata.db_index_stats"
	MessageCypherProcedureMetadataDbIndexVectorCreateNodeIndex                  MessageID = "cypherproceduremetadata.db_index_vector_createnodeindex"
	MessageCypherProcedureMetadataDbIndexVectorCreateRelationshipIndex          MessageID = "cypherproceduremetadata.db_index_vector_createrelationshipindex"
	MessageCypherProcedureMetadataDbIndexVectorDrop                             MessageID = "cypherproceduremetadata.db_index_vector_drop"
	MessageCypherProcedureMetadataDbIndexVectorEmbed                            MessageID = "cypherproceduremetadata.db_index_vector_embed"
	MessageCypherProcedureMetadataDbIndexVectorQueryNodes                       MessageID = "cypherproceduremetadata.db_index_vector_querynodes"
	MessageCypherProcedureMetadataDbIndexVectorQueryRelationships               MessageID = "cypherproceduremetadata.db_index_vector_queryrelationships"
	MessageCypherProcedureMetadataDbIndexes                                     MessageID = "cypherproceduremetadata.db_indexes"
	MessageCypherProcedureMetadataDbInfer                                       MessageID = "cypherproceduremetadata.db_infer"
	MessageCypherProcedureMetadataDbInfo                                        MessageID = "cypherproceduremetadata.db_info"
	MessageCypherProcedureMetadataDbLabels                                      MessageID = "cypherproceduremetadata.db_labels"
	MessageCypherProcedureMetadataDbPing                                        MessageID = "cypherproceduremetadata.db_ping"
	MessageCypherProcedureMetadataDbPropertyKeys                                MessageID = "cypherproceduremetadata.db_propertykeys"
	MessageCypherProcedureMetadataDbRelationshipTypes                           MessageID = "cypherproceduremetadata.db_relationshiptypes"
	MessageCypherProcedureMetadataDbRerank                                      MessageID = "cypherproceduremetadata.db_rerank"
	MessageCypherProcedureMetadataDbResampleIndex                               MessageID = "cypherproceduremetadata.db_resampleindex"
	MessageCypherProcedureMetadataDbRetrieve                                    MessageID = "cypherproceduremetadata.db_retrieve"
	MessageCypherProcedureMetadataDbRretrieve                                   MessageID = "cypherproceduremetadata.db_rretrieve"
	MessageCypherProcedureMetadataDbSchemaNodeProperties                        MessageID = "cypherproceduremetadata.db_schema_nodeproperties"
	MessageCypherProcedureMetadataDbSchemaRelProperties                         MessageID = "cypherproceduremetadata.db_schema_relproperties"
	MessageCypherProcedureMetadataDbSchemaVisualization                         MessageID = "cypherproceduremetadata.db_schema_visualization"
	MessageCypherProcedureMetadataDbStatsClear                                  MessageID = "cypherproceduremetadata.db_stats_clear"
	MessageCypherProcedureMetadataDbStatsCollect                                MessageID = "cypherproceduremetadata.db_stats_collect"
	MessageCypherProcedureMetadataDbStatsRetrieve                               MessageID = "cypherproceduremetadata.db_stats_retrieve"
	MessageCypherProcedureMetadataDbStatsRetrieveAllAnTheStats                  MessageID = "cypherproceduremetadata.db_stats_retrieveallanthestats"
	MessageCypherProcedureMetadataDbStatsStatus                                 MessageID = "cypherproceduremetadata.db_stats_status"
	MessageCypherProcedureMetadataDbStatsStop                                   MessageID = "cypherproceduremetadata.db_stats_stop"
	MessageCypherProcedureMetadataDbTemporalAsOf                                MessageID = "cypherproceduremetadata.db_temporal_asof"
	MessageCypherProcedureMetadataDbTemporalAssertNoOverlap                     MessageID = "cypherproceduremetadata.db_temporal_assertnooverlap"
	MessageCypherProcedureMetadataDbTxlogByTxId                                 MessageID = "cypherproceduremetadata.db_txlog_bytxid"
	MessageCypherProcedureMetadataDbTxlogEntries                                MessageID = "cypherproceduremetadata.db_txlog_entries"
	MessageCypherProcedureMetadataDbmsClientConfig                              MessageID = "cypherproceduremetadata.dbms_clientconfig"
	MessageCypherProcedureMetadataDbmsComponents                                MessageID = "cypherproceduremetadata.dbms_components"
	MessageCypherProcedureMetadataDbmsFunctions                                 MessageID = "cypherproceduremetadata.dbms_functions"
	MessageCypherProcedureMetadataDbmsInfo                                      MessageID = "cypherproceduremetadata.dbms_info"
	MessageCypherProcedureMetadataDbmsListConfig                                MessageID = "cypherproceduremetadata.dbms_listconfig"
	MessageCypherProcedureMetadataDbmsListConnections                           MessageID = "cypherproceduremetadata.dbms_listconnections"
	MessageCypherProcedureMetadataDbmsProcedures                                MessageID = "cypherproceduremetadata.dbms_procedures"
	MessageCypherProcedureMetadataGdsFastRPStats                                MessageID = "cypherproceduremetadata.gds_fastrp_stats"
	MessageCypherProcedureMetadataGdsFastRPStream                               MessageID = "cypherproceduremetadata.gds_fastrp_stream"
	MessageCypherProcedureMetadataGdsGraphDrop                                  MessageID = "cypherproceduremetadata.gds_graph_drop"
	MessageCypherProcedureMetadataGdsGraphList                                  MessageID = "cypherproceduremetadata.gds_graph_list"
	MessageCypherProcedureMetadataGdsGraphProject                               MessageID = "cypherproceduremetadata.gds_graph_project"
	MessageCypherProcedureMetadataGdsLinkPredictionAdamicAdarStream             MessageID = "cypherproceduremetadata.gds_linkprediction_adamicadar_stream"
	MessageCypherProcedureMetadataGdsLinkPredictionCommonNeighborsStream        MessageID = "cypherproceduremetadata.gds_linkprediction_commonneighbors_stream"
	MessageCypherProcedureMetadataGdsLinkPredictionJaccardStream                MessageID = "cypherproceduremetadata.gds_linkprediction_jaccard_stream"
	MessageCypherProcedureMetadataGdsLinkPredictionPredictStream                MessageID = "cypherproceduremetadata.gds_linkprediction_predict_stream"
	MessageCypherProcedureMetadataGdsLinkPredictionPreferentialAttachmentStream MessageID = "cypherproceduremetadata.gds_linkprediction_preferentialattachment_stream"
	MessageCypherProcedureMetadataGdsLinkPredictionResourceAllocationStream     MessageID = "cypherproceduremetadata.gds_linkprediction_resourceallocation_stream"
	MessageCypherProcedureMetadataGdsVersion                                    MessageID = "cypherproceduremetadata.gds_version"
	MessageCypherProcedureMetadataNornicdbDecayInfo                             MessageID = "cypherproceduremetadata.nornicdb_decay_info"
	MessageCypherProcedureMetadataNornicdbKnowledgepolicyDeindexStatus          MessageID = "cypherproceduremetadata.nornicdb_knowledgepolicy_deindexstatus"
	MessageCypherProcedureMetadataNornicdbKnowledgepolicyInfo                   MessageID = "cypherproceduremetadata.nornicdb_knowledgepolicy_info"
	MessageCypherProcedureMetadataNornicdbKnowledgepolicyPolicies               MessageID = "cypherproceduremetadata.nornicdb_knowledgepolicy_policies"
	MessageCypherProcedureMetadataNornicdbKnowledgepolicyProfiles               MessageID = "cypherproceduremetadata.nornicdb_knowledgepolicy_profiles"
	MessageCypherProcedureMetadataNornicdbKnowledgepolicyResolve                MessageID = "cypherproceduremetadata.nornicdb_knowledgepolicy_resolve"
	MessageCypherProcedureMetadataNornicdbStats                                 MessageID = "cypherproceduremetadata.nornicdb_stats"
	MessageCypherProcedureMetadataNornicdbVersion                               MessageID = "cypherproceduremetadata.nornicdb_version"
	MessageCypherProcedureMetadataTxSetMetaData                                 MessageID = "cypherproceduremetadata.tx_setmetadata"
)
const (
	MessageCypherProceduresVectorQueryParseFailed                MessageID = "cypherprocedures.vector_query_parse_failed"
	MessageCypherProceduresStringQueryEmbedderRequired           MessageID = "cypherprocedures.string_query_embedder_required"
	MessageCypherProceduresEmbedQueryFailed                      MessageID = "cypherprocedures.embed_query_failed"
	MessageCypherProceduresParameterNotProvided                  MessageID = "cypherprocedures.parameter_not_provided"
	MessageCypherProceduresParameterNonNumeric                   MessageID = "cypherprocedures.parameter_non_numeric"
	MessageCypherProceduresParameterStringEmbedderRequired       MessageID = "cypherprocedures.parameter_string_embedder_required"
	MessageCypherProceduresEmbedParameterFailed                  MessageID = "cypherprocedures.embed_parameter_failed"
	MessageCypherProceduresParameterUnsupportedType              MessageID = "cypherprocedures.parameter_unsupported_type"
	MessageCypherProceduresUnsupportedParameters                 MessageID = "cypherprocedures.unsupported_parameters"
	MessageCypherProceduresQueryInputPossiblyUnsupported         MessageID = "cypherprocedures.query_input_possibly_unsupported"
	MessageCypherProceduresQueryInputRequired                    MessageID = "cypherprocedures.query_input_required"
	MessageCypherProceduresVectorCreateNodeInvalidSyntax         MessageID = "cypherprocedures.vector_create_node_invalid_syntax"
	MessageCypherProceduresVectorCreateNodeArgumentsRequired     MessageID = "cypherprocedures.vector_create_node_arguments_required"
	MessageCypherProceduresCreateVectorIndexFailed               MessageID = "cypherprocedures.create_vector_index_failed"
	MessageCypherProceduresVectorCreateRelationshipInvalidSyntax MessageID = "cypherprocedures.vector_create_relationship_invalid_syntax"
	MessageCypherProceduresVectorCreateRelationshipArguments     MessageID = "cypherprocedures.vector_create_relationship_arguments_required"
	MessageCypherProceduresInvalidDimension                      MessageID = "cypherprocedures.invalid_dimension"
	MessageCypherProceduresCreateRelationshipVectorIndexFailed   MessageID = "cypherprocedures.create_relationship_vector_index_failed"
	MessageCypherProceduresFulltextCreateNodeInvalidSyntax       MessageID = "cypherprocedures.fulltext_create_node_invalid_syntax"
	MessageCypherProceduresFulltextCreateNodeArgumentsRequired   MessageID = "cypherprocedures.fulltext_create_node_arguments_required"
	MessageCypherProceduresCreateFulltextIndexFailed             MessageID = "cypherprocedures.create_fulltext_index_failed"
	MessageCypherProceduresFulltextCreateRelationshipInvalid     MessageID = "cypherprocedures.fulltext_create_relationship_invalid_syntax"
	MessageCypherProceduresFulltextCreateRelationshipArguments   MessageID = "cypherprocedures.fulltext_create_relationship_arguments_required"
	MessageCypherProceduresCreateRelationshipFulltextIndexFailed MessageID = "cypherprocedures.create_relationship_fulltext_index_failed"
	MessageCypherProceduresFulltextDropInvalidSyntax             MessageID = "cypherprocedures.fulltext_drop_invalid_syntax"
	MessageCypherProceduresVectorDropInvalidSyntax               MessageID = "cypherprocedures.vector_drop_invalid_syntax"
	MessageCypherProceduresSetNodeVectorInvalidSyntax            MessageID = "cypherprocedures.set_node_vector_invalid_syntax"
	MessageCypherProceduresSetNodeVectorParenthesesRequired      MessageID = "cypherprocedures.set_node_vector_parentheses_required"
	MessageCypherProceduresSetNodeVectorArgumentsRequired        MessageID = "cypherprocedures.set_node_vector_arguments_required"
	MessageCypherProceduresSetNodeVectorArgumentRequired         MessageID = "cypherprocedures.set_node_vector_argument_required"
	MessageCypherProceduresNodeNotFound                          MessageID = "cypherprocedures.node_not_found"
	MessageCypherProceduresUpdateNodeFailed                      MessageID = "cypherprocedures.update_node_failed"
	MessageCypherProceduresSetRelationshipVectorInvalidSyntax    MessageID = "cypherprocedures.set_relationship_vector_invalid_syntax"
	MessageCypherProceduresSetRelationshipVectorParentheses      MessageID = "cypherprocedures.set_relationship_vector_parentheses_required"
	MessageCypherProceduresSetRelationshipVectorArguments        MessageID = "cypherprocedures.set_relationship_vector_arguments_required"
	MessageCypherProceduresSetRelationshipVectorArgument         MessageID = "cypherprocedures.set_relationship_vector_argument_required"
	MessageCypherProceduresRelationshipNotFound                  MessageID = "cypherprocedures.relationship_not_found"
	MessageCypherProceduresUpdateRelationshipFailed              MessageID = "cypherprocedures.update_relationship_failed"
	MessageCypherProceduresMetadataActiveTransactionRequired     MessageID = "cypherprocedures.metadata_active_transaction_required"
	MessageCypherProceduresMetadataInvalidSyntax                 MessageID = "cypherprocedures.metadata_invalid_syntax"
	MessageCypherProceduresMetadataObjectRequired                MessageID = "cypherprocedures.metadata_object_required"
	MessageCypherProceduresMetadataEntryRequired                 MessageID = "cypherprocedures.metadata_entry_required"
	MessageCypherProceduresMetadataTransactionUnsupported        MessageID = "cypherprocedures.metadata_transaction_unsupported"
	MessageCypherProceduresSetMetadataFailed                     MessageID = "cypherprocedures.set_metadata_failed"
	MessageCypherProceduresCreateInTransaction                   MessageID = "cypherprocedures.create_in_transaction"
	MessageCypherProceduresCreateInvalidSyntax                   MessageID = "cypherprocedures.create_invalid_syntax"
	MessageCypherProceduresBodyRequired                          MessageID = "cypherprocedures.body_required"
	MessageCypherProceduresAlreadyExists                         MessageID = "cypherprocedures.already_exists"
	MessageCypherProceduresEncodeRecordFailed                    MessageID = "cypherprocedures.encode_record_failed"
	MessageCypherProceduresUpdateCatalogFailed                   MessageID = "cypherprocedures.update_catalog_failed"
	MessageCypherProceduresPersistCatalogFailed                  MessageID = "cypherprocedures.persist_catalog_failed"
	MessageCypherProceduresDropInTransaction                     MessageID = "cypherprocedures.drop_in_transaction"
	MessageCypherProceduresDropInvalidSyntax                     MessageID = "cypherprocedures.drop_invalid_syntax"
	MessageCypherProceduresDropFailed                            MessageID = "cypherprocedures.drop_failed"
	MessageCypherProceduresRegistryReloadFailed                  MessageID = "cypherprocedures.registry_reload_failed"
	MessageCypherProceduresCatalogReadFailed                     MessageID = "cypherprocedures.catalog_read_failed"
	MessageCypherProceduresCatalogRecordDecodeFailed             MessageID = "cypherprocedures.catalog_record_decode_failed"
	MessageCypherProceduresCatalogRecordInvalid                  MessageID = "cypherprocedures.catalog_record_invalid"
	MessageCypherProceduresInvalidArgumentName                   MessageID = "cypherprocedures.invalid_argument_name"
	MessageCypherProceduresDuplicateArgument                     MessageID = "cypherprocedures.duplicate_argument"
	MessageCypherProceduresInvalidMode                           MessageID = "cypherprocedures.invalid_mode"
	MessageCypherProceduresReadContainsWrite                     MessageID = "cypherprocedures.read_contains_write"
	MessageCypherProceduresArgumentCount                         MessageID = "cypherprocedures.argument_count"
)
const (
	MessageCypherResidualWithClauseNotFound             MessageID = "cypherresidual.with_clause_not_found"
	MessageCypherResidualUnwindClauseNotFound           MessageID = "cypherresidual.unwind_clause_not_found"
	MessageCypherResidualUnionClauseNotFound            MessageID = "cypherresidual.union_clause_not_found"
	MessageCypherResidualUnionAllClauseNotFound         MessageID = "cypherresidual.union_all_clause_not_found"
	MessageCypherResidualUnionBranchFailed              MessageID = "cypherresidual.union_branch_failed"
	MessageCypherResidualUnionColumnCountMismatch       MessageID = "cypherresidual.union_column_count_mismatch"
	MessageCypherResidualOptionalMatchNotFound          MessageID = "cypherresidual.optional_match_not_found"
	MessageCypherResidualCompoundOptionalMatchNotFound  MessageID = "cypherresidual.compound_optional_match_not_found"
	MessageCypherResidualMatchNodePatternParseFailed    MessageID = "cypherresidual.match_node_pattern_parse_failed"
	MessageCypherResidualInitialNodesLookupFailed       MessageID = "cypherresidual.initial_nodes_lookup_failed"
	MessageCypherResidualSumArithmeticTermUnsupported   MessageID = "cypherresidual.sum_arithmetic_term_unsupported"
	MessageCypherResidualSumNumericRequired             MessageID = "cypherresidual.sum_numeric_required"
	MessageCypherResidualReturnClauseRequired           MessageID = "cypherresidual.return_clause_required"
	MessageCypherResidualForeachClauseNotFound          MessageID = "cypherresidual.foreach_clause_not_found"
	MessageCypherResidualLoadCSVUnsupported             MessageID = "cypherresidual.load_csv_unsupported"
	MessageCypherResidualEmptyLabelAfterColon           MessageID = "cypherresidual.empty_label_after_colon"
	MessageCypherResidualPropertyMapSyntaxInvalid       MessageID = "cypherresidual.property_map_syntax_invalid"
	MessageCypherResidualRelationshipConnectorExpected  MessageID = "cypherresidual.relationship_connector_expected"
	MessageCypherResidualCreateRelationshipInvalid      MessageID = "cypherresidual.create_relationship_invalid"
	MessageCypherResidualWithItemInvalid                MessageID = "cypherresidual.with_item_invalid"
	MessageCypherResidualCreateSetScopeEntityRequired   MessageID = "cypherresidual.create_set_scope_entity_required"
	MessageCypherResidualCreateWithExpressionInvalid    MessageID = "cypherresidual.create_with_expression_invalid"
	MessageCypherResidualMergePatternInvalid            MessageID = "cypherresidual.merge_pattern_invalid"
	MessageCypherResidualSetMergeMapOrParameterRequired MessageID = "cypherresidual.set_merge_map_or_parameter_required"
	MessageCypherResidualSetAssignmentInvalid           MessageID = "cypherresidual.set_assignment_invalid"
	MessageCypherResidualSetEntityAssignmentInvalid     MessageID = "cypherresidual.set_entity_assignment_invalid"
	MessageCypherResidualCollectSubquerySyntaxInvalid   MessageID = "cypherresidual.collect_subquery_syntax_invalid"
	MessageCypherResidualCollectSubqueryReturnRequired  MessageID = "cypherresidual.collect_subquery_return_required"
	MessageCypherResidualCollectSubqueryExecutionFailed MessageID = "cypherresidual.collect_subquery_execution_failed"
	MessageCypherResidualPolicyDisallowed               MessageID = "cypherresidual.policy_disallowed"
	MessageCypherResidualPolicyAllowedRequired          MessageID = "cypherresidual.policy_allowed_required"
	MessageCypherResidualCompositeShowTargetRequired    MessageID = "cypherresidual.composite_show_target_required"
	MessageCypherResidualShowAliasesManagerUnavailable  MessageID = "cypherresidual.show_aliases_manager_unavailable"
	MessageCypherResidualShowAliasesSyntaxInvalid       MessageID = "cypherresidual.show_aliases_syntax_invalid"
)
const (
	MessageCypherSchemaCompositeDDLNotAllowed             MessageID = "cypherschema.composite_ddl_not_allowed"
	MessageCypherSchemaUnknownCommand                     MessageID = "cypherschema.unknown_command"
	MessageCypherSchemaFlushPendingWritesFailed           MessageID = "cypherschema.flush_pending_writes_failed"
	MessageCypherSchemaConstraintPropertiesRequired       MessageID = "cypherschema.constraint_properties_required"
	MessageCypherSchemaTemporalRelationshipArityRequired  MessageID = "cypherschema.temporal_relationship_arity_required"
	MessageCypherSchemaTemporalNodeArityRequired          MessageID = "cypherschema.temporal_node_arity_required"
	MessageCypherSchemaDomainValueListInvalid             MessageID = "cypherschema.domain_value_list_invalid"
	MessageCypherSchemaDomainAllowedValueRequired         MessageID = "cypherschema.domain_allowed_value_required"
	MessageCypherSchemaInvalidSyntax                      MessageID = "cypherschema.invalid_syntax"
	MessageCypherSchemaNameRequired                       MessageID = "cypherschema.name_required"
	MessageCypherSchemaRangeIndexSinglePropertyRequired   MessageID = "cypherschema.range_index_single_property_required"
	MessageCypherSchemaCreateRangeIndexFailed             MessageID = "cypherschema.create_range_index_failed"
	MessageCypherSchemaInvalidIdentifierSegment           MessageID = "cypherschema.invalid_identifier_segment"
	MessageCypherSchemaInvalidIfNotExistsClause           MessageID = "cypherschema.invalid_if_not_exists_clause"
	MessageCypherSchemaEmptyClause                        MessageID = "cypherschema.empty_clause"
	MessageCypherSchemaInvalidClause                      MessageID = "cypherschema.invalid_clause"
	MessageCypherSchemaMissingKeyword                     MessageID = "cypherschema.missing_keyword"
	MessageCypherSchemaInvalidKeyword                     MessageID = "cypherschema.invalid_keyword"
	MessageCypherSchemaInvalidTrailingSyntax              MessageID = "cypherschema.invalid_trailing_syntax"
	MessageCypherSchemaIndexPropertiesRequired            MessageID = "cypherschema.index_properties_required"
	MessageCypherSchemaIndexNameRequired                  MessageID = "cypherschema.index_name_required"
	MessageCypherSchemaFulltextPropertiesRequired         MessageID = "cypherschema.fulltext_properties_required"
	MessageCypherSchemaEmptyStatement                     MessageID = "cypherschema.empty_statement"
	MessageCypherSchemaInvalidPattern                     MessageID = "cypherschema.invalid_pattern"
	MessageCypherSchemaUnsupportedPredicate               MessageID = "cypherschema.unsupported_predicate"
	MessageCypherSchemaUnsupportedCreateConstraintShape   MessageID = "cypherschema.unsupported_create_constraint_shape"
	MessageCypherSchemaPositiveMaxCountRequired           MessageID = "cypherschema.positive_max_count_required"
	MessageCypherSchemaBackfillIndexFailed                MessageID = "cypherschema.backfill_index_failed"
	MessageCypherSchemaBackfillPropertyIndexFailed        MessageID = "cypherschema.backfill_property_index_failed"
	MessageCypherSchemaUnsupportedPropertyType            MessageID = "cypherschema.unsupported_property_type"
	MessageCypherSchemaManagerUnavailable                 MessageID = "cypherschema.manager_unavailable"
	MessageCypherSchemaAddFulltextRelationshipIndexFailed MessageID = "cypherschema.add_fulltext_relationship_index_failed"
	MessageCypherSchemaAddFulltextIndexFailed             MessageID = "cypherschema.add_fulltext_index_failed"
	MessageCypherSchemaUnterminatedString                 MessageID = "cypherschema.unterminated_string"
	MessageCypherSchemaContractEntryRequired              MessageID = "cypherschema.contract_entry_required"
	MessageCypherSchemaMalformedRequireBlock              MessageID = "cypherschema.malformed_require_block"
	MessageCypherSchemaNestedContractEntryUnsupported     MessageID = "cypherschema.nested_contract_entry_unsupported"
)
const (
	MessageCypherSpecializedCallsVectorQueryParseFailed          MessageID = "cypherspecializedcalls.vector_query_parse_failed"
	MessageCypherSpecializedCallsStringQueryEmbedderRequired     MessageID = "cypherspecializedcalls.string_query_embedder_required"
	MessageCypherSpecializedCallsEmbedQueryTextFailed            MessageID = "cypherspecializedcalls.embed_query_text_failed"
	MessageCypherSpecializedCallsParameterNotProvided            MessageID = "cypherspecializedcalls.parameter_not_provided"
	MessageCypherSpecializedCallsParameterNonNumeric             MessageID = "cypherspecializedcalls.parameter_non_numeric"
	MessageCypherSpecializedCallsParameterStringEmbedderRequired MessageID = "cypherspecializedcalls.parameter_string_embedder_required"
	MessageCypherSpecializedCallsEmbedParameterFailed            MessageID = "cypherspecializedcalls.embed_parameter_failed"
	MessageCypherSpecializedCallsParameterUnsupportedType        MessageID = "cypherspecializedcalls.parameter_unsupported_type"
	MessageCypherSpecializedCallsUnsupportedParameters           MessageID = "cypherspecializedcalls.unsupported_parameters"
	MessageCypherSpecializedCallsQueryInputPossiblyUnsupported   MessageID = "cypherspecializedcalls.query_input_possibly_unsupported"
	MessageCypherSpecializedCallsQueryInputRequired              MessageID = "cypherspecializedcalls.query_input_required"
	MessageCypherSpecializedCallsVectorQueryFailed               MessageID = "cypherspecializedcalls.vector_query_failed"
	MessageCypherSpecializedCallsEmbedderNotConfigured           MessageID = "cypherspecializedcalls.embedder_not_configured"
	MessageCypherSpecializedCallsVectorEmbedInvalidSyntax        MessageID = "cypherspecializedcalls.vector_embed_invalid_syntax"
	MessageCypherSpecializedCallsVectorEmbedArgumentRequired     MessageID = "cypherspecializedcalls.vector_embed_argument_required"
	MessageCypherSpecializedCallsVectorEmbedUnmatchedParenthesis MessageID = "cypherspecializedcalls.vector_embed_unmatched_parenthesis"
	MessageCypherSpecializedCallsVectorEmbedTextRequired         MessageID = "cypherspecializedcalls.vector_embed_text_required"
	MessageCypherSpecializedCallsVectorEmbedParameterString      MessageID = "cypherspecializedcalls.vector_embed_parameter_string"
	MessageCypherSpecializedCallsVectorEmbedStringRequired       MessageID = "cypherspecializedcalls.vector_embed_string_required"
	MessageCypherSpecializedCallsVectorEmbedFailed               MessageID = "cypherspecializedcalls.vector_embed_failed"
	MessageCypherSpecializedCallsVectorProcedureNotFound         MessageID = "cypherspecializedcalls.vector_procedure_not_found"
	MessageCypherSpecializedCallsVectorParametersMissing         MessageID = "cypherspecializedcalls.vector_parameters_missing"
	MessageCypherSpecializedCallsVectorUnmatchedParenthesis      MessageID = "cypherspecializedcalls.vector_unmatched_parenthesis"
	MessageCypherSpecializedCallsFulltextIndexNotFound           MessageID = "cypherspecializedcalls.fulltext_index_not_found"
	MessageCypherSpecializedCallsFulltextArgumentCount           MessageID = "cypherspecializedcalls.fulltext_argument_count"
	MessageCypherSpecializedCallsProcedureOptionsMapRequired     MessageID = "cypherspecializedcalls.procedure_options_map_required"
	MessageCypherSpecializedCallsFulltextOptionInvalid           MessageID = "cypherspecializedcalls.fulltext_option_invalid"
	MessageCypherSpecializedCallsTemporalAssertArgumentCount     MessageID = "cypherspecializedcalls.temporal_assert_argument_count"
	MessageCypherSpecializedCallsDateTimeRequired                MessageID = "cypherspecializedcalls.datetime_required"
	MessageCypherSpecializedCallsTemporalReadNodesFailed         MessageID = "cypherspecializedcalls.temporal_read_nodes_failed"
	MessageCypherSpecializedCallsTemporalOverlap                 MessageID = "cypherspecializedcalls.temporal_overlap"
	MessageCypherSpecializedCallsTemporalAsOfArgumentCount       MessageID = "cypherspecializedcalls.temporal_asof_argument_count"
	MessageCypherSpecializedCallsTemporalLookupFailed            MessageID = "cypherspecializedcalls.temporal_lookup_failed"
	MessageCypherSpecializedCallsTemporalInvalidSyntax           MessageID = "cypherspecializedcalls.temporal_invalid_syntax"
	MessageCypherSpecializedCallsTemporalClosingParenthesis      MessageID = "cypherspecializedcalls.temporal_closing_parenthesis"
	MessageCypherSpecializedCallsArgumentRequired                MessageID = "cypherspecializedcalls.argument_required"
	MessageCypherSpecializedCallsArgumentEmpty                   MessageID = "cypherspecializedcalls.argument_empty"
	MessageCypherSpecializedCallsUnsignedNonNegative             MessageID = "cypherspecializedcalls.unsigned_non_negative"
	MessageCypherSpecializedCallsUnsignedWholeNonNegative        MessageID = "cypherspecializedcalls.unsigned_whole_non_negative"
	MessageCypherSpecializedCallsUnsignedValid                   MessageID = "cypherspecializedcalls.unsigned_valid"
	MessageCypherSpecializedCallsTxlogInvalidSyntax              MessageID = "cypherspecializedcalls.txlog_invalid_syntax"
	MessageCypherSpecializedCallsTxlogClosingParenthesis         MessageID = "cypherspecializedcalls.txlog_closing_parenthesis"
	MessageCypherSpecializedCallsTxlogEntriesArgumentRequired    MessageID = "cypherspecializedcalls.txlog_entries_argument_required"
	MessageCypherSpecializedCallsTxlogInvalidSequence            MessageID = "cypherspecializedcalls.txlog_invalid_sequence"
	MessageCypherSpecializedCallsTxlogFromSequencePositive       MessageID = "cypherspecializedcalls.txlog_from_sequence_positive"
	MessageCypherSpecializedCallsWALUnavailable                  MessageID = "cypherspecializedcalls.wal_unavailable"
	MessageCypherSpecializedCallsWALConfigUnavailable            MessageID = "cypherspecializedcalls.wal_config_unavailable"
	MessageCypherSpecializedCallsWALDirectoryNotConfigured       MessageID = "cypherspecializedcalls.wal_directory_not_configured"
	MessageCypherSpecializedCallsTxlogSequenceOrder              MessageID = "cypherspecializedcalls.txlog_sequence_order"
	MessageCypherSpecializedCallsTxlogReadEntriesFailed          MessageID = "cypherspecializedcalls.txlog_read_entries_failed"
	MessageCypherSpecializedCallsTxlogByIDArgumentRequired       MessageID = "cypherspecializedcalls.txlog_by_id_argument_required"
	MessageCypherSpecializedCallsTxlogIDEmpty                    MessageID = "cypherspecializedcalls.txlog_id_empty"
	MessageCypherSpecializedCallsTxlogFindEntriesFailed          MessageID = "cypherspecializedcalls.txlog_find_entries_failed"
)
const (
	MessageCypherSubqueriesCallNotFound                      MessageID = "cyphersubqueries.call_not_found"
	MessageCypherSubqueriesMatchBeforeCallNotFound           MessageID = "cyphersubqueries.match_before_call_not_found"
	MessageCypherSubqueriesNodePatternInvalid                MessageID = "cyphersubqueries.node_pattern_invalid"
	MessageCypherSubqueriesOuterMatchBindingsFailed          MessageID = "cyphersubqueries.outer_match_bindings_failed"
	MessageCypherSubqueriesNodeLoadFailed                    MessageID = "cyphersubqueries.node_load_failed"
	MessageCypherSubqueriesCallForNodeFailed                 MessageID = "cyphersubqueries.call_for_node_failed"
	MessageCypherSubqueriesOuterMatchSeedsFailed             MessageID = "cyphersubqueries.outer_match_seeds_failed"
	MessageCypherSubqueriesCallBodyEmpty                     MessageID = "cyphersubqueries.call_body_empty"
	MessageCypherSubqueriesUseClauseFailed                   MessageID = "cyphersubqueries.use_clause_failed"
	MessageCypherSubqueriesUseDatabaseFailed                 MessageID = "cyphersubqueries.use_database_failed"
	MessageCypherSubqueriesCorrelatedUnionParseFailed        MessageID = "cyphersubqueries.correlated_union_parse_failed"
	MessageCypherSubqueriesUnionWithImportsFailed            MessageID = "cyphersubqueries.union_with_imports_failed"
	MessageCypherSubqueriesStaticUnionBranchFailed           MessageID = "cyphersubqueries.static_union_branch_failed"
	MessageCypherSubqueriesCorrelatedUnionBranchFailed       MessageID = "cyphersubqueries.correlated_union_branch_failed"
	MessageCypherSubqueriesUnionColumnCountMismatch          MessageID = "cyphersubqueries.union_column_count_mismatch"
	MessageCypherSubqueriesCorrelatedImportFailed            MessageID = "cyphersubqueries.correlated_import_failed"
	MessageCypherSubqueriesOptionalImportFallbackFailed      MessageID = "cyphersubqueries.optional_import_fallback_failed"
	MessageCypherSubqueriesWithImportUnknownVariable         MessageID = "cyphersubqueries.with_import_unknown_variable"
	MessageCypherSubqueriesCorrelatedVariableEmpty           MessageID = "cyphersubqueries.correlated_variable_empty"
	MessageCypherSubqueriesOuterMatchProjectionMissing       MessageID = "cyphersubqueries.outer_match_projection_missing"
	MessageCypherSubqueriesCallBodyExpected                  MessageID = "cyphersubqueries.call_body_expected"
	MessageCypherSubqueriesCallError                         MessageID = "cyphersubqueries.call_error"
	MessageCypherSubqueriesTransactionImportShapeUnsupported MessageID = "cyphersubqueries.transaction_import_shape_unsupported"
	MessageCypherSubqueriesTransactionBodyEmpty              MessageID = "cyphersubqueries.transaction_body_empty"
	MessageCypherSubqueriesTransactionBatchFailed            MessageID = "cyphersubqueries.transaction_batch_failed"
	MessageCypherSubqueriesExecutionFailed                   MessageID = "cyphersubqueries.execution_failed"
	MessageCypherSubqueriesFirstBatchFailed                  MessageID = "cyphersubqueries.first_batch_failed"
	MessageCypherSubqueriesBatchFailed                       MessageID = "cyphersubqueries.batch_failed"
	MessageCypherSubqueriesBatchProgressFailed               MessageID = "cyphersubqueries.batch_progress_failed"
	MessageCypherSubqueriesAfterCallClauseUnsupported        MessageID = "cyphersubqueries.after_call_clause_unsupported"
	MessageCypherSubqueriesChainedTransactionsUnsupported    MessageID = "cyphersubqueries.chained_transactions_unsupported"
	MessageCypherSubqueriesWithQueryClauseRequired           MessageID = "cyphersubqueries.with_query_clause_required"
	MessageCypherSubqueriesWithBodyEmpty                     MessageID = "cyphersubqueries.with_body_empty"
	MessageCypherSubqueriesWithImportExpressionInvalid       MessageID = "cyphersubqueries.with_import_expression_invalid"
	MessageCypherSubqueriesWithImportsRequired               MessageID = "cyphersubqueries.with_imports_required"
	MessageCypherSubqueriesSeedRowMissingVariable            MessageID = "cyphersubqueries.seed_row_missing_variable"
	MessageCypherSubqueriesBatchedLookupFailed               MessageID = "cyphersubqueries.batched_lookup_failed"
	MessageCypherSubqueriesBatchedLookupColumnsUnexpected    MessageID = "cyphersubqueries.batched_lookup_columns_unexpected"
	MessageCypherSubqueriesRAGCandidatesRequired             MessageID = "cyphersubqueries.rag_candidates_required"
	MessageCypherSubqueriesInferenceManagerUnavailable       MessageID = "cyphersubqueries.inference_manager_unavailable"
	MessageCypherSubqueriesInferMessagesEmpty                MessageID = "cyphersubqueries.infer_messages_empty"
	MessageCypherSubqueriesInferPromptOrMessagesRequired     MessageID = "cyphersubqueries.infer_prompt_or_messages_required"
	MessageCypherSubqueriesQueryRequired                     MessageID = "cyphersubqueries.query_required"
	MessageCypherSubqueriesRAGSyntaxInvalid                  MessageID = "cyphersubqueries.rag_syntax_invalid"
	MessageCypherSubqueriesRAGRequestArgumentRequired        MessageID = "cyphersubqueries.rag_request_argument_required"
	MessageCypherSubqueriesRAGParenthesisUnmatched           MessageID = "cyphersubqueries.rag_parenthesis_unmatched"
	MessageCypherSubqueriesRAGParameterMustBeMap             MessageID = "cyphersubqueries.rag_parameter_must_be_map"
	MessageCypherSubqueriesRAGRequestMustBeMapLiteral        MessageID = "cyphersubqueries.rag_request_must_be_map_literal"
	MessageCypherSubqueriesRAGCandidateIDRequired            MessageID = "cyphersubqueries.rag_candidate_id_required"
	MessageCypherSubqueriesRAGFailClosedInvalid              MessageID = "cyphersubqueries.rag_fail_closed_invalid"
	MessageCypherSubqueriesRAGFailClosedEmbeddingUnavailable MessageID = "cyphersubqueries.rag_fail_closed_embedding_unavailable"
)
const (
	MessageCypherTransactionsAlreadyActive                  MessageID = "cyphertransactions.already_active"
	MessageCypherTransactionsEngineUnsupported              MessageID = "cyphertransactions.engine_unsupported"
	MessageCypherTransactionsPrimeNamespaceFailed           MessageID = "cyphertransactions.prime_namespace_failed"
	MessageCypherTransactionsStartFailed                    MessageID = "cyphertransactions.start_failed"
	MessageCypherTransactionsPinNamespaceFailed             MessageID = "cyphertransactions.pin_namespace_failed"
	MessageCypherTransactionsConfigureFailed                MessageID = "cyphertransactions.configure_failed"
	MessageCypherTransactionsWALBeginFailed                 MessageID = "cyphertransactions.wal_begin_failed"
	MessageCypherTransactionsNoActive                       MessageID = "cyphertransactions.no_active"
	MessageCypherTransactionsUnknownType                    MessageID = "cyphertransactions.unknown_type"
	MessageCypherTransactionsCommitFailed                   MessageID = "cyphertransactions.commit_failed"
	MessageCypherTransactionsRollbackFailed                 MessageID = "cyphertransactions.rollback_failed"
	MessageCypherTransactionsShowInTransactionUnsupported   MessageID = "cyphertransactions.show_in_transaction_unsupported"
	MessageCypherTransactionsQueryInTransactionUnsupported  MessageID = "cyphertransactions.query_in_transaction_unsupported"
	MessageCypherTransactionsInvalidScriptAction            MessageID = "cyphertransactions.invalid_script_action"
	MessageCypherTransactionsCaseBlockMissing               MessageID = "cyphertransactions.case_block_missing"
	MessageCypherTransactionsCaseSyntaxInvalid              MessageID = "cyphertransactions.case_syntax_invalid"
	MessageCypherTransactionsConditionNotBoolean            MessageID = "cyphertransactions.condition_not_boolean"
	MessageCypherTransactionsQueryTypeUnsupported           MessageID = "cyphertransactions.query_type_unsupported"
	MessageCypherTransactionsReturnClauseNotFound           MessageID = "cyphertransactions.return_clause_not_found"
	MessageCypherTransactionsSyntaxStartInvalid             MessageID = "cyphertransactions.syntax_start_invalid"
	MessageCypherTransactionsSyntaxUnbalancedAt             MessageID = "cyphertransactions.syntax_unbalanced_at"
	MessageCypherTransactionsSyntaxUnbalancedParentheses    MessageID = "cyphertransactions.syntax_unbalanced_parentheses"
	MessageCypherTransactionsSyntaxUnbalancedSquareBrackets MessageID = "cyphertransactions.syntax_unbalanced_square_brackets"
	MessageCypherTransactionsSyntaxUnbalancedCurlyBraces    MessageID = "cyphertransactions.syntax_unbalanced_curly_braces"
	MessageCypherTransactionsSyntaxUnclosedQuote            MessageID = "cyphertransactions.syntax_unclosed_quote"
	MessageCypherTransactionsDeleteResidualRelationships    MessageID = "cyphertransactions.delete_residual_relationships"
	MessageCypherTransactionsMatchWithUnwindClausesRequired MessageID = "cyphertransactions.match_with_unwind_clauses_required"
	MessageCypherTransactionsStorageFailed                  MessageID = "cyphertransactions.storage_failed"
	MessageCypherTransactionsUnwindASRequired               MessageID = "cyphertransactions.unwind_as_required"
	MessageCypherTransactionsOrderByParseFailed             MessageID = "cyphertransactions.order_by_parse_failed"
	MessageCypherTransactionsMultiMatchReturnRequired       MessageID = "cyphertransactions.multi_match_return_required"
	MessageCypherTransactionsMultipleMatchExpected          MessageID = "cyphertransactions.multiple_match_expected"
)
const (
	MessageSystemDBOverridesUnsupported MessageID = "dbconfig.system_database_overrides_unsupported"
	MessageDBConfigUnavailable          MessageID = "dbconfig.store_unavailable"
	MessageDBManagerUnavailable         MessageID = "dbconfig.manager_unavailable"
	MessageMVCCCompositeUnsupported     MessageID = "dbconfig.mvcc_composite_unsupported"
	MessageMVCCScheduleUnsupported      MessageID = "dbconfig.mvcc_schedule_unsupported"
	MessageInvalidInterval              MessageID = "dbconfig.invalid_interval"
	MessageMVCCDebtUnsupported          MessageID = "dbconfig.mvcc_debt_unsupported"
	MessageInvalidLimit                 MessageID = "dbconfig.invalid_limit"
	MessageDisallowedConfigKey          MessageID = "dbconfig.disallowed_key"
	MessageMVCCPruneTriggered           MessageID = "dbconfig.mvcc_prune_triggered"
	MessageMVCCLifecyclePaused          MessageID = "dbconfig.mvcc_lifecycle_paused"
	MessageMVCCLifecycleResumed         MessageID = "dbconfig.mvcc_lifecycle_resumed"
)
const (
	MessageHistoricalNeighborhoodRoute MessageID = "graph.historical_neighborhood_route"
	MessagePathNodeIDsRequired         MessageID = "graph.path_node_ids_required"
	MessageHistoricalPathRoute         MessageID = "graph.historical_path_route"
	MessageGraphDatabaseAccessDenied   MessageID = "graph.database_access_denied"
	MessageTemporalNodeLimit           MessageID = "graph.temporal_node_limit_exceeded"
	MessageDiffNodeLimit               MessageID = "graph.diff_node_limit_exceeded"
)
const (
	MessageMCPInvalidRequestBody      MessageID = "mcp.invalid_request_body"
	MessageMCPUnknownTool             MessageID = "mcp.unknown_tool"
	MessageMCPDatabaseExecutor        MessageID = "mcp.database_executor_unavailable"
	MessageMCPCypherExecutor          MessageID = "mcp.cypher_executor_unavailable"
	MessageMCPFieldRequired           MessageID = "mcp.field_required"
	MessageMCPInvalidLabel            MessageID = "mcp.invalid_label"
	MessageMCPStoreNodeFailed         MessageID = "mcp.store_node_failed"
	MessageMCPStoreNoNodeID           MessageID = "mcp.store_no_node_id"
	MessageMCPStoreInvalidNodeID      MessageID = "mcp.store_invalid_node_id"
	MessageMCPStoreNoExecutor         MessageID = "mcp.store_no_executor"
	MessageMCPNodeNotFound            MessageID = "mcp.node_not_found"
	MessageMCPRecallFailed            MessageID = "mcp.recall_failed"
	MessageMCPInvalidRelation         MessageID = "mcp.invalid_relation"
	MessageMCPSourceNotFound          MessageID = "mcp.source_node_not_found"
	MessageMCPTargetNotFound          MessageID = "mcp.target_node_not_found"
	MessageMCPCreateEdgeFailed        MessageID = "mcp.create_edge_failed"
	MessageMCPLinkNoEdgeID            MessageID = "mcp.link_no_edge_id"
	MessageMCPLinkInvalidEdgeID       MessageID = "mcp.link_invalid_edge_id"
	MessageMCPDeleteTaskFailed        MessageID = "mcp.delete_task_failed"
	MessageMCPTaskNotFound            MessageID = "mcp.task_not_found"
	MessageMCPUpdateTaskFailed        MessageID = "mcp.update_task_failed"
	MessageMCPFetchTaskFailed         MessageID = "mcp.fetch_task_failed"
	MessageMCPIDRequiredForDelete     MessageID = "mcp.id_required_for_delete"
	MessageMCPTitleRequiredForNew     MessageID = "mcp.title_required_for_new"
	MessageMCPCreateTaskFailed        MessageID = "mcp.create_task_failed"
	MessageMCPTaskNoID                MessageID = "mcp.task_no_id"
	MessageMCPTaskInvalidID           MessageID = "mcp.task_invalid_id"
	MessageMCPDependencyFailed        MessageID = "mcp.dependency_create_failed"
	MessageMCPListTasksFailed         MessageID = "mcp.list_tasks_failed"
	MessageMCPEmbeddingElementInvalid MessageID = "mcp.embedding_element_invalid"
	MessageMCPEmbeddingTypeInvalid    MessageID = "mcp.embedding_type_invalid"
	MessageMCPEmbeddingEmpty          MessageID = "mcp.embedding_empty"
	MessageMCPEmbeddingDimensions     MessageID = "mcp.embedding_dimensions_invalid"
	MessageMCPAuthenticationRequired  MessageID = "mcp.authentication_required"
	MessageMCPInvalidToken            MessageID = "mcp.invalid_or_expired_token"
	MessageMCPRateLimitExceeded       MessageID = "mcp.rate_limit_exceeded"
	MessageMCPNoAuthContext           MessageID = "mcp.authentication_context_missing"
	MessageMCPToolPermissionDenied    MessageID = "mcp.tool_permission_denied"
	MessageMCPCypherExecutorNil       MessageID = "mcp.cypher_executor_nil"
	MessageMCPServerAlreadyClosed     MessageID = "mcp.server_already_closed"
	MessageMCPUnknownRole             MessageID = "mcp.unknown_role"
	MessageMCPAuthenticatorMissing    MessageID = "mcp.authenticator_not_configured"
)
const (
	MessageMultidbConstituentAliasRequired     MessageID = "multidb.constituent_alias_required"
	MessageMultidbConstituentDatabaseRequired  MessageID = "multidb.constituent_database_required"
	MessageMultidbConstituentTypeInvalid       MessageID = "multidb.constituent_type_invalid"
	MessageMultidbAccessModeInvalid            MessageID = "multidb.access_mode_invalid"
	MessageMultidbRemoteURIRequired            MessageID = "multidb.remote_uri_required"
	MessageMultidbRemoteAuthModeInvalid        MessageID = "multidb.remote_auth_mode_invalid"
	MessageMultidbRemoteUserRequired           MessageID = "multidb.remote_user_required"
	MessageMultidbRemotePasswordRequired       MessageID = "multidb.remote_password_required"
	MessageMultidbOIDCCredentialsForbidden     MessageID = "multidb.oidc_credentials_forbidden"
	MessageMultidbMaxNodesReached              MessageID = "multidb.max_nodes_reached"
	MessageMultidbMaxEdgesReached              MessageID = "multidb.max_edges_reached"
	MessageMultidbMaxBytesExceeded             MessageID = "multidb.max_bytes_exceeded"
	MessageMultidbMaxConcurrentQueries         MessageID = "multidb.max_concurrent_queries_reached"
	MessageMultidbQueryRateExceeded            MessageID = "multidb.query_rate_exceeded"
	MessageMultidbWriteRateExceeded            MessageID = "multidb.write_rate_exceeded"
	MessageMultidbMaxConnections               MessageID = "multidb.max_connections_reached"
	MessageMultidbCredentialFormatInvalid      MessageID = "multidb.credential_format_invalid"
	MessageMultidbCredentialPayloadTruncated   MessageID = "multidb.credential_payload_truncated"
	MessageMultidbRemotePasswordEmpty          MessageID = "multidb.remote_password_empty"
	MessageMultidbCredentialKeyConfigRequired  MessageID = "multidb.credential_key_config_required"
	MessageMultidbStoredPasswordMissing        MessageID = "multidb.stored_password_missing"
	MessageMultidbCredentialDecryptKeyRequired MessageID = "multidb.credential_decrypt_key_required"
	MessageMultidbInvalidConstituent           MessageID = "multidb.invalid_constituent"
)
const (
	MessageMultidbCompositeConstituentDatabaseNotFound MessageID = "multidb.composite.constituent_database_not_found"
	MessageMultidbCompositeDatabaseAsConstituent       MessageID = "multidb.composite.database_as_constituent"
	MessageMultidbCompositeDuplicateAlias              MessageID = "multidb.composite.duplicate_alias"
	MessageMultidbCompositeSecureCredentialsFailed     MessageID = "multidb.composite.secure_remote_credentials_failed"
	MessageMultidbCompositeDatabaseNotComposite        MessageID = "multidb.composite.database_not_composite"
	MessageMultidbCompositePersistAfterDropFailed      MessageID = "multidb.composite.persist_metadata_after_drop_failed"
	MessageMultidbCompositeAliasExists                 MessageID = "multidb.composite.alias_exists"
	MessageMultidbCompositeAliasNotFound               MessageID = "multidb.composite.alias_not_found"
	MessageMultidbManagerDeleteDatabaseDataFailed      MessageID = "multidb.manager.delete_database_data_failed"
	MessageMultidbManagerResolveRemoteCredentials      MessageID = "multidb.manager.resolve_remote_credentials_failed"
	MessageMultidbManagerGetRemoteStorageFailed        MessageID = "multidb.manager.get_remote_storage_failed"
	MessageMultidbManagerGetConstituentStorageFailed   MessageID = "multidb.manager.get_constituent_storage_failed"
	MessageMultidbManagerRemoteFactoryNotConfigured    MessageID = "multidb.manager.remote_engine_factory_not_configured"
	MessageMultidbManagerRemoteFactoryReturnedNil      MessageID = "multidb.manager.remote_engine_factory_returned_nil"
	MessageMultidbManagerInvalidStatus                 MessageID = "multidb.manager.invalid_status"
	MessageMultidbManagerAliasContainsWhitespace       MessageID = "multidb.manager.alias_contains_whitespace"
	MessageMultidbManagerAliasReserved                 MessageID = "multidb.manager.alias_reserved"
	MessageMultidbMetadataParseFailed                  MessageID = "multidb.metadata.parse_failed"
	MessageMultidbMetadataSerializeFailed              MessageID = "multidb.metadata.serialize_failed"
	MessageMultidbStorageGetNodeCountFailed            MessageID = "multidb.storage.get_node_count_failed"
	MessageMultidbStorageGetEdgeCountFailed            MessageID = "multidb.storage.get_edge_count_failed"
	MessageMultidbStorageGetSizeFailed                 MessageID = "multidb.storage.get_size_failed"
	MessageMultidbStorageCalculateNodeSizeFailed       MessageID = "multidb.storage.calculate_node_size_failed"
	MessageMultidbStorageCalculateEdgeSizeFailed       MessageID = "multidb.storage.calculate_edge_size_failed"
	MessageMultidbStorageGetAllNodesFailed             MessageID = "multidb.storage.get_all_nodes_failed"
	MessageMultidbStorageGetAllEdgesFailed             MessageID = "multidb.storage.get_all_edges_failed"
	MessageMultidbStorageEncodeNodeFailed              MessageID = "multidb.storage.encode_node_failed"
	MessageMultidbStorageEncodeEdgeFailed              MessageID = "multidb.storage.encode_edge_failed"
	MessageMultidbStorageGetAllNodesForSizeFailed      MessageID = "multidb.storage.get_all_nodes_for_size_calculation_failed"
	MessageMultidbStorageGetAllEdgesForSizeFailed      MessageID = "multidb.storage.get_all_edges_for_size_calculation_failed"
	MessageMultidbStorageGetOutgoingEdgesFailed        MessageID = "multidb.storage.get_outgoing_edges_failed"
	MessageMultidbStorageGetIncomingEdgesFailed        MessageID = "multidb.storage.get_incoming_edges_failed"
)
const (
	MessageNornicDBCLIRootShort                   MessageID = "nornicdbcli.root.short"
	MessageNornicDBCLIRootLong                    MessageID = "nornicdbcli.root.long"
	MessageNornicDBCLIVersionShort                MessageID = "nornicdbcli.version.short"
	MessageNornicDBCLIServeShort                  MessageID = "nornicdbcli.serve.short"
	MessageNornicDBCLIServeLong                   MessageID = "nornicdbcli.serve.long"
	MessageNornicDBCLIInitShort                   MessageID = "nornicdbcli.init.short"
	MessageNornicDBCLIShellShort                  MessageID = "nornicdbcli.shell.short"
	MessageNornicDBCLIDecayShort                  MessageID = "nornicdbcli.decay.short"
	MessageNornicDBCLIDecaySuppressShort          MessageID = "nornicdbcli.decay.suppress.short"
	MessageNornicDBCLIDecayStatsShort             MessageID = "nornicdbcli.decay.stats.short"
	MessageNornicDBCLIFlagConfig                  MessageID = "nornicdbcli.flag.config"
	MessageNornicDBCLIFlagBoltPort                MessageID = "nornicdbcli.flag.bolt_port"
	MessageNornicDBCLIFlagHTTPPort                MessageID = "nornicdbcli.flag.http_port"
	MessageNornicDBCLIFlagAddress                 MessageID = "nornicdbcli.flag.address"
	MessageNornicDBCLIFlagDataDir                 MessageID = "nornicdbcli.flag.data_dir"
	MessageNornicDBCLIFlagUpgradeStorage          MessageID = "nornicdbcli.flag.upgrade_storage"
	MessageNornicDBCLIFlagEmbeddingProvider       MessageID = "nornicdbcli.flag.embedding_provider"
	MessageNornicDBCLIFlagEmbeddingURL            MessageID = "nornicdbcli.flag.embedding_url"
	MessageNornicDBCLIFlagEmbeddingKey            MessageID = "nornicdbcli.flag.embedding_key"
	MessageNornicDBCLIFlagEmbeddingModel          MessageID = "nornicdbcli.flag.embedding_model"
	MessageNornicDBCLIFlagEmbeddingDimensions     MessageID = "nornicdbcli.flag.embedding_dimensions"
	MessageNornicDBCLIFlagEmbeddingCache          MessageID = "nornicdbcli.flag.embedding_cache"
	MessageNornicDBCLIFlagEmbeddingGPULayers      MessageID = "nornicdbcli.flag.embedding_gpu_layers"
	MessageNornicDBCLIFlagEmbeddingEnabled        MessageID = "nornicdbcli.flag.embedding_enabled"
	MessageNornicDBCLIFlagSearchBM25Enabled       MessageID = "nornicdbcli.flag.search_bm25_enabled"
	MessageNornicDBCLIFlagSearchBM25Warming       MessageID = "nornicdbcli.flag.search_bm25_warming"
	MessageNornicDBCLIFlagSearchVectorEnabled     MessageID = "nornicdbcli.flag.search_vector_enabled"
	MessageNornicDBCLIFlagSearchVectorWarming     MessageID = "nornicdbcli.flag.search_vector_warming"
	MessageNornicDBCLIFlagGPUBackend              MessageID = "nornicdbcli.flag.gpu_backend"
	MessageNornicDBCLIFlagNoAuth                  MessageID = "nornicdbcli.flag.no_auth"
	MessageNornicDBCLIFlagAdminPassword           MessageID = "nornicdbcli.flag.admin_password"
	MessageNornicDBCLIFlagMCPEnabled              MessageID = "nornicdbcli.flag.mcp_enabled"
	MessageNornicDBCLIFlagParallel                MessageID = "nornicdbcli.flag.parallel"
	MessageNornicDBCLIFlagParallelWorkers         MessageID = "nornicdbcli.flag.parallel_workers"
	MessageNornicDBCLIFlagParallelBatchSize       MessageID = "nornicdbcli.flag.parallel_batch_size"
	MessageNornicDBCLIFlagMemoryLimit             MessageID = "nornicdbcli.flag.memory_limit"
	MessageNornicDBCLIFlagGCPercent               MessageID = "nornicdbcli.flag.gc_percent"
	MessageNornicDBCLIFlagPoolEnabled             MessageID = "nornicdbcli.flag.pool_enabled"
	MessageNornicDBCLIFlagLowMemory               MessageID = "nornicdbcli.flag.low_memory"
	MessageNornicDBCLIFlagQueryCacheSize          MessageID = "nornicdbcli.flag.query_cache_size"
	MessageNornicDBCLIFlagQueryCacheTTL           MessageID = "nornicdbcli.flag.query_cache_ttl"
	MessageNornicDBCLIFlagLogQueries              MessageID = "nornicdbcli.flag.log_queries"
	MessageNornicDBCLIFlagStdioLogMaxKB           MessageID = "nornicdbcli.flag.stdio_log_max_kb"
	MessageNornicDBCLIFlagStdioLogCompactSeconds  MessageID = "nornicdbcli.flag.stdio_log_compact_seconds"
	MessageNornicDBCLIFlagHeadless                MessageID = "nornicdbcli.flag.headless"
	MessageNornicDBCLIFlagBasePath                MessageID = "nornicdbcli.flag.base_path"
	MessageNornicDBCLIFlagClusterMode             MessageID = "nornicdbcli.flag.cluster_mode"
	MessageNornicDBCLIFlagClusterNodeID           MessageID = "nornicdbcli.flag.cluster_node_id"
	MessageNornicDBCLIFlagClusterBindAddress      MessageID = "nornicdbcli.flag.cluster_bind_address"
	MessageNornicDBCLIFlagClusterAdvertiseAddress MessageID = "nornicdbcli.flag.cluster_advertise_address"
	MessageNornicDBCLIFlagClusterDataDir          MessageID = "nornicdbcli.flag.cluster_data_dir"
	MessageNornicDBCLIFlagClusterHARole           MessageID = "nornicdbcli.flag.cluster_ha_role"
	MessageNornicDBCLIFlagClusterHAPeerAddress    MessageID = "nornicdbcli.flag.cluster_ha_peer_address"
	MessageNornicDBCLIFlagClusterRaftBootstrap    MessageID = "nornicdbcli.flag.cluster_raft_bootstrap"
	MessageNornicDBCLIFlagClusterRaftPeers        MessageID = "nornicdbcli.flag.cluster_raft_peers"
	MessageNornicDBCLIFlagURI                     MessageID = "nornicdbcli.flag.uri"
	MessageNornicDBCLIFlagDecayThreshold          MessageID = "nornicdbcli.flag.decay_threshold"
	MessageNornicDBCLIInvalidMemoryLimit          MessageID = "nornicdbcli.validation.invalid_memory_limit"
)
const (
	MessageNornicDBCLIInvalidStdioInterval      MessageID = "nornicdbcli.validation.invalid_stdio_interval"
	MessageNornicDBCLINoConfig                  MessageID = "nornicdbcli.config.not_found"
	MessageNornicDBCLIConfigWarning             MessageID = "nornicdbcli.config.load_warning"
	MessageNornicDBCLIConfigLoaded              MessageID = "nornicdbcli.config.loaded"
	MessageNornicDBCLIDefaultPasswordWarning    MessageID = "nornicdbcli.serve.default_admin_password_warning"
	MessageNornicDBCLIStarting                  MessageID = "nornicdbcli.serve.starting"
	MessageNornicDBCLIDataDirectory             MessageID = "nornicdbcli.serve.data_directory"
	MessageNornicDBCLIBoltEndpoint              MessageID = "nornicdbcli.serve.bolt_endpoint"
	MessageNornicDBCLIHTTPEndpoint              MessageID = "nornicdbcli.serve.http_endpoint"
	MessageNornicDBCLIEmbeddingsEnabled         MessageID = "nornicdbcli.serve.embeddings_enabled"
	MessageNornicDBCLIEmbeddingsDisabled        MessageID = "nornicdbcli.serve.embeddings_disabled"
	MessageNornicDBCLIEmbeddingLocal            MessageID = "nornicdbcli.serve.embedding_local"
	MessageNornicDBCLIEmbeddingURL              MessageID = "nornicdbcli.serve.embedding_url"
	MessageNornicDBCLIEmbeddingModel            MessageID = "nornicdbcli.serve.embedding_model"
	MessageNornicDBCLIParallelEnabled           MessageID = "nornicdbcli.serve.parallel_enabled"
	MessageNornicDBCLIParallelDisabled          MessageID = "nornicdbcli.serve.parallel_disabled"
	MessageNornicDBCLIMemoryLimit               MessageID = "nornicdbcli.serve.memory_limit"
	MessageNornicDBCLIMemoryUnlimited           MessageID = "nornicdbcli.serve.memory_unlimited"
	MessageNornicDBCLIGCPercent                 MessageID = "nornicdbcli.serve.gc_percent"
	MessageNornicDBCLIObjectPooling             MessageID = "nornicdbcli.serve.object_pooling"
	MessageNornicDBCLIQueryCache                MessageID = "nornicdbcli.serve.query_cache"
	MessageNornicDBCLIOpeningDatabase           MessageID = "nornicdbcli.progress.opening_database"
	MessageNornicDBCLIInitializingGPU           MessageID = "nornicdbcli.progress.initializing_gpu"
	MessageNornicDBCLIGPUUnavailable            MessageID = "nornicdbcli.serve.gpu_unavailable"
	MessageNornicDBCLIGPUEnabled                MessageID = "nornicdbcli.serve.gpu_enabled"
	MessageNornicDBCLIGPUDetectedNoCUDA         MessageID = "nornicdbcli.serve.gpu_detected_no_cuda"
	MessageNornicDBCLIBuildCUDA                 MessageID = "nornicdbcli.serve.build_cuda"
	MessageNornicDBCLIGPUDisabled               MessageID = "nornicdbcli.serve.gpu_disabled"
	MessageNornicDBCLISettingUpAuth             MessageID = "nornicdbcli.progress.setting_up_auth"
	MessageNornicDBCLIConfiguredJWT             MessageID = "nornicdbcli.serve.configured_jwt"
	MessageNornicDBCLINoJWT                     MessageID = "nornicdbcli.serve.no_jwt"
	MessageNornicDBCLIAdminSetupFailed          MessageID = "nornicdbcli.serve.admin_setup_failed"
	MessageNornicDBCLIAdminCreated              MessageID = "nornicdbcli.serve.admin_created"
	MessageNornicDBCLIReady                     MessageID = "nornicdbcli.serve.ready"
	MessageNornicDBCLIEndpoints                 MessageID = "nornicdbcli.serve.endpoints"
	MessageNornicDBCLIAuthentication            MessageID = "nornicdbcli.serve.authentication"
	MessageNornicDBCLIPressToStop               MessageID = "nornicdbcli.serve.press_to_stop"
	MessageNornicDBCLIServerStopped             MessageID = "nornicdbcli.serve.stopped"
	MessageNornicDBCLIInitProgress              MessageID = "nornicdbcli.init.progress"
	MessageNornicDBCLIInitSummary               MessageID = "nornicdbcli.init.summary"
	MessageNornicDBCLIShellOpening              MessageID = "nornicdbcli.shell.opening"
	MessageNornicDBCLIShellIntro                MessageID = "nornicdbcli.shell.intro"
	MessageNornicDBCLIShellQueryFailed          MessageID = "nornicdbcli.shell.query_failed"
	MessageNornicDBCLIShellRows                 MessageID = "nornicdbcli.shell.rows"
	MessageNornicDBCLIShellQuerySucceeded       MessageID = "nornicdbcli.shell.query_succeeded"
	MessageNornicDBCLIShellGoodbye              MessageID = "nornicdbcli.shell.goodbye"
	MessageNornicDBCLIDecayOpening              MessageID = "nornicdbcli.decay.opening"
	MessageNornicDBCLIDecaySuppressing          MessageID = "nornicdbcli.decay.suppressing"
	MessageNornicDBCLIDecaySuppressWarning      MessageID = "nornicdbcli.decay.suppress_warning"
	MessageNornicDBCLIDecaySuppressSummary      MessageID = "nornicdbcli.decay.suppress_summary"
	MessageNornicDBCLIDecayStatsSummary         MessageID = "nornicdbcli.decay.stats_summary"
	MessageNornicDBCLIScoreDistribution         MessageID = "nornicdbcli.decay.score_distribution"
	MessageNornicDBCLIPerLabelBreakdown         MessageID = "nornicdbcli.decay.per_label_breakdown"
	MessageNornicDBCLIPerLabelRow               MessageID = "nornicdbcli.decay.per_label_row"
	MessageNornicDBCLIShellUnavailable          MessageID = "nornicdbcli.validation.shell_unavailable"
	MessageNornicDBCLIDecaySuppressStorage      MessageID = "nornicdbcli.validation.decay_suppress_storage"
	MessageNornicDBCLIDecayStatsStorage         MessageID = "nornicdbcli.validation.decay_stats_storage"
	MessageNornicDBCLIConfigLoadFailed          MessageID = "nornicdbcli.config.load_failed"
	MessageNornicDBCLICreateDataDirectoryFailed MessageID = "nornicdbcli.serve.create_data_directory_failed"
	MessageNornicDBCLIOpenDatabaseFailed        MessageID = "nornicdbcli.operation.open_database_failed"
	MessageNornicDBCLICreateAuthenticatorFailed MessageID = "nornicdbcli.serve.create_authenticator_failed"
	MessageNornicDBCLICreateServerFailed        MessageID = "nornicdbcli.serve.create_server_failed"
	MessageNornicDBCLIBoltTLSClientAuthFailed   MessageID = "nornicdbcli.serve.bolt_tls_client_auth_failed"
	MessageNornicDBCLIBoltTLSLoadFailed         MessageID = "nornicdbcli.serve.bolt_tls_load_failed"
	MessageNornicDBCLIObservabilityInitFailed   MessageID = "nornicdbcli.serve.observability_init_failed"
	MessageNornicDBCLIStartServerFailed         MessageID = "nornicdbcli.serve.start_server_failed"
	MessageNornicDBCLITelemetryListenerFailed   MessageID = "nornicdbcli.serve.telemetry_listener_failed"
	MessageNornicDBCLIPprofListenerFailed       MessageID = "nornicdbcli.serve.pprof_listener_failed"
	MessageNornicDBCLISupervisedRunFailed       MessageID = "nornicdbcli.serve.supervised_run_failed"
	MessageNornicDBCLILocalizationInitFailed    MessageID = "nornicdbcli.serve.localization_init_failed"
	MessageNornicDBCLIBoltAdapterFailed         MessageID = "nornicdbcli.adapter.bolt_failed"
	MessageNornicDBCLIDatabaseNotInitialized    MessageID = "nornicdbcli.transaction.database_not_initialized"
	MessageNornicDBCLITransactionNotFound       MessageID = "nornicdbcli.transaction.not_found"
	MessageNornicDBCLITransactionAlreadyActive  MessageID = "nornicdbcli.transaction.already_active"
	MessageNornicDBCLICreateDirectoryFailed     MessageID = "nornicdbcli.init.create_directory_failed"
	MessageNornicDBCLIWriteConfigFailed         MessageID = "nornicdbcli.init.write_config_failed"
	MessageNornicDBCLIReadInputFailed           MessageID = "nornicdbcli.shell.read_input_failed"
	MessageNornicDBCLILoadNodesFailed           MessageID = "nornicdbcli.decay.load_nodes_failed"
)
const (
	MessageNornicDBCoreNotFound                              MessageID = "nornicdbcore.not_found"
	MessageNornicDBCoreInvalidID                             MessageID = "nornicdbcore.invalid_id"
	MessageNornicDBCoreDatabaseClosed                        MessageID = "nornicdbcore.database_closed"
	MessageNornicDBCoreInvalidInput                          MessageID = "nornicdbcore.invalid_input"
	MessageNornicDBCoreQueryEmbeddingDimensionMismatch       MessageID = "nornicdbcore.query_embedding_dimension_mismatch"
	MessageNornicDBCoreCypherRowDecodeFailed                 MessageID = "nornicdbcore.cypher_row_decode_failed"
	MessageNornicDBCoreDecodeDestinationRequired             MessageID = "nornicdbcore.decode_destination_required"
	MessageNornicDBCoreDecodeFieldFailed                     MessageID = "nornicdbcore.decode_field_failed"
	MessageNornicDBCoreDecodeAssignmentFailed                MessageID = "nornicdbcore.decode_assignment_failed"
	MessageNornicDBCoreNodeIDRequired                        MessageID = "nornicdbcore.node_id_required"
	MessageNornicDBCoreNodeAlreadyExists                     MessageID = "nornicdbcore.node_already_exists"
	MessageNornicDBCoreSourceNodeNotFound                    MessageID = "nornicdbcore.source_node_not_found"
	MessageNornicDBCoreTargetNodeNotFound                    MessageID = "nornicdbcore.target_node_not_found"
	MessageNornicDBCoreSearchServiceNotInitialized           MessageID = "nornicdbcore.search_service_not_initialized"
	MessageNornicDBCoreFindSimilarLimitInvalid               MessageID = "nornicdbcore.find_similar_limit_invalid"
	MessageNornicDBCoreNodeEmbeddingMissing                  MessageID = "nornicdbcore.node_embedding_missing"
	MessageNornicDBCoreSchemaManagerNotInitialized           MessageID = "nornicdbcore.schema_manager_not_initialized"
	MessageNornicDBCoreIndexTypeUnsupported                  MessageID = "nornicdbcore.index_type_unsupported"
	MessageNornicDBCoreBackupNodesReadFailed                 MessageID = "nornicdbcore.backup_nodes_read_failed"
	MessageNornicDBCoreBackupEdgesReadFailed                 MessageID = "nornicdbcore.backup_edges_read_failed"
	MessageNornicDBCoreBackupMarshalFailed                   MessageID = "nornicdbcore.backup_marshal_failed"
	MessageNornicDBCoreBackupWriteFailed                     MessageID = "nornicdbcore.backup_write_failed"
	MessageNornicDBCoreBackupReadFailed                      MessageID = "nornicdbcore.backup_read_failed"
	MessageNornicDBCoreBackupParseFailed                     MessageID = "nornicdbcore.backup_parse_failed"
	MessageNornicDBCoreRestoreNodeFailed                     MessageID = "nornicdbcore.restore_node_failed"
	MessageNornicDBCoreRestoreEdgeFailed                     MessageID = "nornicdbcore.restore_edge_failed"
	MessageNornicDBCoreRestoreTemporalIndexesFailed          MessageID = "nornicdbcore.restore_temporal_indexes_failed"
	MessageNornicDBCoreRestoreMVCCHeadsFailed                MessageID = "nornicdbcore.restore_mvcc_heads_failed"
	MessageNornicDBCoreEncryptionPasswordRequired            MessageID = "nornicdbcore.encryption_password_required"
	MessageNornicDBCoreEncryptionSaltGenerateFailed          MessageID = "nornicdbcore.encryption_salt_generate_failed"
	MessageNornicDBCoreDataDirectoryCreateFailed             MessageID = "nornicdbcore.data_directory_create_failed"
	MessageNornicDBCoreEncryptionSaltSaveFailed              MessageID = "nornicdbcore.encryption_salt_save_failed"
	MessageNornicDBCorePersistentStorageOpenFailed           MessageID = "nornicdbcore.persistent_storage_open_failed"
	MessageNornicDBCoreWALInitializeFailed                   MessageID = "nornicdbcore.wal_initialize_failed"
	MessageNornicDBCoreInferenceInitializeFailed             MessageID = "nornicdbcore.inference_initialize_failed"
	MessageNornicDBCoreReplicationStorageAdapterCreateFailed MessageID = "nornicdbcore.replication_storage_adapter_create_failed"
	MessageNornicDBCoreReplicationReplicatorCreateFailed     MessageID = "nornicdbcore.replication_replicator_create_failed"
	MessageNornicDBCoreReplicationStartFailed                MessageID = "nornicdbcore.replication_start_failed"
	MessageNornicDBCoreNilDatabase                           MessageID = "nornicdbcore.nil_database"
	MessageNornicDBCoreStorageEngineNotInitialized           MessageID = "nornicdbcore.storage_engine_not_initialized"
	MessageNornicDBCoreStorageProbeFailed                    MessageID = "nornicdbcore.storage_probe_failed"
	MessageNornicDBCoreCloseFailed                           MessageID = "nornicdbcore.close_failed"
	MessageNornicDBCoreAutoEmbedNotEnabled                   MessageID = "nornicdbcore.auto_embed_not_enabled"
	MessageNornicDBCoreClearEmbeddingsUnsupported            MessageID = "nornicdbcore.clear_embeddings_unsupported"
	MessageNornicDBCoreQueryDimensionMismatchForDatabase     MessageID = "nornicdbcore.query_embedding_dimension_mismatch_for_database"
	MessageNornicDBCoreConsentUserIDRequired                 MessageID = "nornicdbcore.consent_user_id_required"
	MessageNornicDBCoreConsentPurposeRequired                MessageID = "nornicdbcore.consent_purpose_required"
	MessageNornicDBCoreConsentExistingCheckFailed            MessageID = "nornicdbcore.consent_existing_check_failed"
	MessageNornicDBCoreConsentCheckFailed                    MessageID = "nornicdbcore.consent_check_failed"
	MessageNornicDBCoreConsentGetFailed                      MessageID = "nornicdbcore.consent_get_failed"
	MessageNornicDBCoreConsentStreamFailed                   MessageID = "nornicdbcore.consent_stream_failed"
	MessageNornicDBCoreSearchPersistenceDatabaseInvalid      MessageID = "nornicdbcore.search_persistence_database_invalid"
	MessageNornicDBCoreSearchSystemDatabaseUnsupported       MessageID = "nornicdbcore.search_system_database_unsupported"
	MessageNornicDBCoreSearchBaseStorageUnavailable          MessageID = "nornicdbcore.search_base_storage_unavailable"
	MessageNornicDBCoreSearchDatabaseNotInitialized          MessageID = "nornicdbcore.search_database_not_initialized"
	MessageNornicDBCoreInferenceBaseStorageUnavailable       MessageID = "nornicdbcore.inference_base_storage_unavailable"
	MessageNornicDBCoreEmbedBatchFailed                      MessageID = "nornicdbcore.embed_batch_failed"
	MessageNornicDBCoreEmbeddingCountMismatch                MessageID = "nornicdbcore.embedding_count_mismatch"
	MessageNornicDBCoreBootstrapKnowledgePolicyFailed        MessageID = "nornicdbcore.bootstrap_knowledge_policy_failed"
	MessageNornicDBCoreBootstrapDDLExpected                  MessageID = "nornicdbcore.bootstrap_ddl_expected"
	MessageNornicDBCoreBootstrapDDLCommandUnsupported        MessageID = "nornicdbcore.bootstrap_ddl_command_unsupported"
	MessageNornicDBCoreEncryptionMasterKeyInvalid            MessageID = "nornicdbcore.encryption_master_key_invalid"
	MessageNornicDBCoreEncryptionProviderInitializeFailed    MessageID = "nornicdbcore.encryption_provider_initialize_failed"
	MessageNornicDBCoreEncryptionDEKMetadataDecodeFailed     MessageID = "nornicdbcore.encryption_dek_metadata_decode_failed"
	MessageNornicDBCoreEncryptionDEKProviderMismatch         MessageID = "nornicdbcore.encryption_dek_provider_mismatch"
	MessageNornicDBCoreEncryptionDEKCiphertextDecodeFailed   MessageID = "nornicdbcore.encryption_dek_ciphertext_decode_failed"
	MessageNornicDBCoreEncryptionDEKUnwrapFailed             MessageID = "nornicdbcore.encryption_dek_unwrap_failed"
	MessageNornicDBCoreEncryptionDEKRotateFailed             MessageID = "nornicdbcore.encryption_dek_rotate_failed"
	MessageNornicDBCoreEncryptionDEKGenerateFailed           MessageID = "nornicdbcore.encryption_dek_generate_failed"
	MessageNornicDBCoreEncryptionDEKEmpty                    MessageID = "nornicdbcore.encryption_dek_empty"
	MessageNornicDBCoreEncryptionDEKDirectoryCreateFailed    MessageID = "nornicdbcore.encryption_dek_directory_create_failed"
	MessageNornicDBCoreEncryptionDEKMetadataEncodeFailed     MessageID = "nornicdbcore.encryption_dek_metadata_encode_failed"
	MessageNornicDBCoreEncryptionDEKMetadataPersistFailed    MessageID = "nornicdbcore.encryption_dek_metadata_persist_failed"
	MessageNornicDBCoreEncryptionMasterKeyRequired           MessageID = "nornicdbcore.encryption_master_key_required"
	MessageNornicDBCoreEncryptionMasterKeyLengthInvalid      MessageID = "nornicdbcore.encryption_master_key_length_invalid"
)
const (
	MessageQdrantInvalidVectorsConfig      MessageID = "qdrant.invalid_vectors_config"
	MessageQdrantVectorSizePositive        MessageID = "qdrant.vector_size_positive"
	MessageQdrantCreateCollectionFailed    MessageID = "qdrant.create_collection_failed"
	MessageQdrantListCollectionsFailed     MessageID = "qdrant.list_collections_failed"
	MessageQdrantDeleteCollectionFailed    MessageID = "qdrant.delete_collection_failed"
	MessageQdrantStoreNotConfigured        MessageID = "qdrant.collection_store_not_configured"
	MessageQdrantTooManyPoints             MessageID = "qdrant.too_many_points"
	MessageQdrantReadPointsFailed          MessageID = "qdrant.read_existing_points_failed"
	MessageQdrantCreatePointsFailed        MessageID = "qdrant.create_points_failed"
	MessageQdrantUpdatePointFailed         MessageID = "qdrant.update_point_failed"
	MessageQdrantMissingVector             MessageID = "qdrant.missing_vector_for_point"
	MessageQdrantIndexPointFailed          MessageID = "qdrant.index_point_failed"
	MessageQdrantOffsetTooLarge            MessageID = "qdrant.offset_too_large"
	MessageQdrantHNSWEfTooLarge            MessageID = "qdrant.hnsw_ef_too_large"
	MessageQdrantPointVectorRequired       MessageID = "qdrant.point_id_and_vectors_required"
	MessageQdrantQueryVariantMissing       MessageID = "qdrant.query_variant_missing"
	MessageQdrantQueryVariantUnsupported   MessageID = "qdrant.query_variant_unsupported"
	MessageQdrantPointNotFoundCause        MessageID = "qdrant.point_not_found_with_cause"
	MessageQdrantVectorNotFound            MessageID = "qdrant.vector_not_found_for_point"
	MessageQdrantInputVariantUnsupported   MessageID = "qdrant.vector_input_variant_unsupported"
	MessageQdrantPositiveRequired          MessageID = "qdrant.positive_example_required"
	MessageQdrantPositiveAverageFailed     MessageID = "qdrant.positive_average_failed"
	MessageQdrantNegativeAverageFailed     MessageID = "qdrant.negative_average_failed"
	MessageQdrantRecommendDimMismatch      MessageID = "qdrant.recommend_dimension_mismatch"
	MessageQdrantVectorKindUnsupported     MessageID = "qdrant.vector_kind_unsupported"
	MessageQdrantScanPointsFailed          MessageID = "qdrant.scan_points_failed"
	MessageQdrantSelectorInvalid           MessageID = "qdrant.points_selector_invalid"
	MessageQdrantVectorsTypeUnsupported    MessageID = "qdrant.vectors_type_unsupported"
	MessageQdrantGetCollectionPointsFailed MessageID = "qdrant.get_collection_points_failed"
	MessageQdrantFullSnapshotStorage       MessageID = "qdrant.full_snapshot_storage_required"
	MessageQdrantCreateBackupFailed        MessageID = "qdrant.create_backup_failed"
	MessageQdrantGetNodesFailed            MessageID = "qdrant.get_nodes_failed"
	MessageQdrantGetEdgesFailed            MessageID = "qdrant.get_edges_failed"
)
const (
	MessageReplicationNotLeader                        MessageID = "replication.not_leader"
	MessageReplicationNoLeader                         MessageID = "replication.no_leader"
	MessageReplicationOperationTimedOut                MessageID = "replication.operation_timed_out"
	MessageReplicationClosed                           MessageID = "replication.closed"
	MessageReplicationStandbyMode                      MessageID = "replication.standby_mode"
	MessageReplicationNotReady                         MessageID = "replication.not_ready"
	MessageReplicationConfigHARoleRequired             MessageID = "replication.config.ha_role_required"
	MessageReplicationConfigInvalidHARole              MessageID = "replication.config.invalid_ha_role"
	MessageReplicationConfigHAPeerAddressRequired      MessageID = "replication.config.ha_peer_address_required"
	MessageReplicationConfigInvalidHASyncMode          MessageID = "replication.config.invalid_ha_sync_mode"
	MessageReplicationConfigRaftPeersRequired          MessageID = "replication.config.raft_peers_required"
	MessageReplicationConfigRegionIDRequired           MessageID = "replication.config.region_id_required"
	MessageReplicationConfigInvalidCrossRegionSyncMode MessageID = "replication.config.invalid_cross_region_sync_mode"
	MessageReplicationConfigUnknownMode                MessageID = "replication.config.unknown_mode"
	MessageReplicationConfigNodeIDRequired             MessageID = "replication.config.node_id_required"
	MessageReplicationConfigSecretTooShort             MessageID = "replication.config.secret_too_short"
	MessageReplicationConfigTLSCertRequired            MessageID = "replication.config.tls_cert_required"
	MessageReplicationConfigTLSKeyRequired             MessageID = "replication.config.tls_key_required"
	MessageReplicationConfigTLSCARequired              MessageID = "replication.config.tls_ca_required"
	MessageReplicationConfigInvalidTLSMinVersion       MessageID = "replication.config.invalid_tls_min_version"
	MessageReplicationTransportClosed                  MessageID = "replication.transport.closed"
	MessageReplicationTransportConnectFailed           MessageID = "replication.transport.connect_failed"
	MessageReplicationTransportListenFailed            MessageID = "replication.transport.listen_failed"
	MessageReplicationTransportLoadTLSCertKeyFailed    MessageID = "replication.transport.load_tls_cert_key_failed"
	MessageReplicationTransportReadTLSCAFailed         MessageID = "replication.transport.read_tls_ca_failed"
	MessageReplicationTransportInvalidTLSCA            MessageID = "replication.transport.invalid_tls_ca"
	MessageReplicationTransportUnknownTLSCipherSuite   MessageID = "replication.transport.unknown_tls_cipher_suite"
	MessageReplicationHAInitTransportFailed            MessageID = "replication.ha.init_transport_failed"
	MessageReplicationHAStartPrimaryFailed             MessageID = "replication.ha.start_primary_failed"
	MessageReplicationHAStartStandbyFailed             MessageID = "replication.ha.start_standby_failed"
	MessageReplicationHAFlushWALFailed                 MessageID = "replication.ha.flush_wal_failed"
	MessageReplicationHAAckTimedOut                    MessageID = "replication.ha.ack_timed_out"
	MessageReplicationHAPrimaryCannotReceiveWAL        MessageID = "replication.ha.primary_cannot_receive_wal"
	MessageReplicationRaftVoteRequestRequired          MessageID = "replication.raft.vote_request_required"
	MessageReplicationRaftAppendRequestRequired        MessageID = "replication.raft.append_entries_request_required"
	MessageReplicationRaftInitTransportFailed          MessageID = "replication.raft.init_transport_failed"
	MessageReplicationRaftSendVoteFailed               MessageID = "replication.raft.send_vote_request_failed"
	MessageReplicationRaftSendAppendFailed             MessageID = "replication.raft.send_append_entries_failed"
	MessageReplicationRaftCommitTimedOut               MessageID = "replication.raft.commit_timed_out"
	MessageReplicationRaftTransportNotConfigured       MessageID = "replication.raft.transport_not_configured"
	MessageReplicationRaftConnectPeerFailed            MessageID = "replication.raft.connect_peer_failed"
	MessageReplicationRaftForwardToLeaderFailed        MessageID = "replication.raft.forward_to_leader_failed"
	MessageReplicationRaftApplyQueueFull               MessageID = "replication.raft.apply_queue_full"
	MessageReplicationRaftApplyTimedOut                MessageID = "replication.raft.apply_timed_out"
	MessageReplicationStorageWALDirectoryCreateFailed  MessageID = "replication.storage.wal_directory_create_failed"
	MessageReplicationStorageWALCreateFailed           MessageID = "replication.storage.wal_create_failed"
	MessageReplicationStorageCommandRequired           MessageID = "replication.storage.command_required"
	MessageReplicationStorageWALAppendFailed           MessageID = "replication.storage.wal_append_failed"
	MessageReplicationStorageUnknownCommandType        MessageID = "replication.storage.unknown_command_type"
	MessageReplicationStorageDecodeNodeFailed          MessageID = "replication.storage.decode_node_failed"
	MessageReplicationStorageDecodeEdgeFailed          MessageID = "replication.storage.decode_edge_failed"
	MessageReplicationStorageDecodeDeleteEdgeFailed    MessageID = "replication.storage.decode_delete_edge_failed"
	MessageReplicationStorageDecodeSetPropertyFailed   MessageID = "replication.storage.decode_set_property_failed"
	MessageReplicationStorageDecodeBatchFailed         MessageID = "replication.storage.decode_batch_failed"
	MessageReplicationStorageDecodeDeletePrefixFailed  MessageID = "replication.storage.decode_delete_prefix_failed"
	MessageReplicationStoragePrefixRequired            MessageID = "replication.storage.prefix_required"
	MessageReplicationStorageDecodeBulkCreateNodes     MessageID = "replication.storage.decode_bulk_create_nodes_failed"
	MessageReplicationStorageDecodeBulkCreateEdges     MessageID = "replication.storage.decode_bulk_create_edges_failed"
	MessageReplicationStorageDecodeBulkDeleteNodes     MessageID = "replication.storage.decode_bulk_delete_nodes_failed"
	MessageReplicationStorageDecodeBulkDeleteEdges     MessageID = "replication.storage.decode_bulk_delete_edges_failed"
	MessageReplicationStorageCypherUnavailable         MessageID = "replication.storage.cypher_executor_unavailable"
	MessageReplicationStorageDecodeCypherFailed        MessageID = "replication.storage.decode_cypher_command_failed"
	MessageReplicationStorageCypherQueryEmpty          MessageID = "replication.storage.cypher_query_empty"
	MessageReplicationStorageExecuteCypherFailed       MessageID = "replication.storage.execute_cypher_failed"
	MessageReplicationStorageFlushWALFailed            MessageID = "replication.storage.flush_wal_failed"
	MessageReplicationStorageReadWALEntriesFailed      MessageID = "replication.storage.read_wal_entries_failed"
	MessageReplicationStorageGetAllNodesFailed         MessageID = "replication.storage.get_all_nodes_failed"
	MessageReplicationStorageGetAllEdgesFailed         MessageID = "replication.storage.get_all_edges_failed"
	MessageReplicationStorageEncodeSnapshotFailed      MessageID = "replication.storage.encode_snapshot_failed"
	MessageReplicationStorageReadSnapshotFailed        MessageID = "replication.storage.read_snapshot_failed"
	MessageReplicationStorageDecodeSnapshotFailed      MessageID = "replication.storage.decode_snapshot_failed"
	MessageReplicationStorageRestoreNodeFailed         MessageID = "replication.storage.restore_node_failed"
	MessageReplicationStorageRestoreEdgeFailed         MessageID = "replication.storage.restore_edge_failed"
	MessageReplicationEngineNodeRequired               MessageID = "replication.engine.node_required"
	MessageReplicationEngineEdgeRequired               MessageID = "replication.engine.edge_required"
	MessageReplicationEngineEncodeNodeFailed           MessageID = "replication.engine.encode_node_failed"
	MessageReplicationEngineEncodeEdgeFailed           MessageID = "replication.engine.encode_edge_failed"
	MessageReplicationEngineEncodeDeleteEdgeFailed     MessageID = "replication.engine.encode_delete_edge_failed"
	MessageReplicationEngineEncodeBulkCreateNodes      MessageID = "replication.engine.encode_bulk_create_nodes_failed"
	MessageReplicationEngineEncodeBulkCreateEdges      MessageID = "replication.engine.encode_bulk_create_edges_failed"
	MessageReplicationEngineEncodeBulkDeleteNodes      MessageID = "replication.engine.encode_bulk_delete_nodes_failed"
	MessageReplicationEngineEncodeBulkDeleteEdges      MessageID = "replication.engine.encode_bulk_delete_edges_failed"
	MessageReplicationEngineEncodeDeletePrefixFailed   MessageID = "replication.engine.encode_delete_prefix_failed"
)
const (
	MessageReplicationRPCEncodeFailed                MessageID = "replication.rpc.encode_failed"
	MessageReplicationRPCDecodeFailed                MessageID = "replication.rpc.decode_failed"
	MessageReplicationRPCNotConnected                MessageID = "replication.rpc.not_connected"
	MessageReplicationRPCWriteFailed                 MessageID = "replication.rpc.write_failed"
	MessageReplicationRPCConnectionClosed            MessageID = "replication.rpc.connection_closed"
	MessageReplicationRPCCommandRequired             MessageID = "replication.rpc.command_required"
	MessageReplicationRPCRemoteApplyFailed           MessageID = "replication.rpc.remote_apply_failed"
	MessageReplicationRPCAuthenticationFieldsMissing MessageID = "replication.rpc.authentication_fields_missing"
	MessageReplicationRPCTimestampOutsideSkew        MessageID = "replication.rpc.timestamp_outside_allowed_skew"
	MessageReplicationRPCInvalidSignature            MessageID = "replication.rpc.invalid_signature"
	MessageReplicationRPCReadFailed                  MessageID = "replication.rpc.read_failed"
	MessageReplicationRPCMessageTooLarge             MessageID = "replication.rpc.message_too_large"
)
const (
	MessageSearchGPUKMeansClusteredIndexRequired MessageID = "search.gpu_kmeans_clustered_index_required"
	MessageSearchClusterHNSWLookupNotConfigured  MessageID = "search.cluster_hnsw_lookup_not_configured"
	MessageSearchIVFPQIndexNotConfigured         MessageID = "search.ivfpq_index_not_configured"
	MessageSearchClusterQueryDimensionsMismatch  MessageID = "search.cluster_query_dimensions_mismatch"
	MessageSearchClusterFailed                   MessageID = "search.cluster_search_failed"
	MessageSearchHNSWIndexCreationFailed         MessageID = "search.hnsw_index_creation_failed"
	MessageSearchVectorIndexNil                  MessageID = "search.vector_index_nil"
)
const (
	MessageAutoEmbedDisabled               MessageID = "search.auto_embed_not_enabled"
	MessageSearchServiceUnavailable        MessageID = "search.service_unavailable"
	MessageQueryChunkingFailed             MessageID = "search.query_chunking_failed"
	MessageNodeHasNoEmbedding              MessageID = "search.node_has_no_embedding"
	MessageSearchNodeNotFound              MessageID = "search.node_not_found"
	MessageSearchQueryEmbeddingRequired    MessageID = "search.query_embedding_required"
	MessageSearchIndexBuilding             MessageID = "search.index_building"
	MessageSearchVectorEmbeddingRequired   MessageID = "search.vector_embedding_required"
	MessageSearchClusteringNotEnabled      MessageID = "search.clustering_not_enabled"
	MessageSearchClusteringFailed          MessageID = "search.clustering_failed"
	MessageSearchClusterNotClustered       MessageID = "search.cluster_index_not_clustered"
	MessageSearchVectorIndexUnavailable    MessageID = "search.vector_index_unavailable"
	MessageSearchNoClusters                MessageID = "search.no_clusters"
	MessageSearchVectorPipelineFailed      MessageID = "search.vector_pipeline_failed"
	MessageSearchCandidateGenerationFailed MessageID = "search.candidate_generation_failed"
	MessageSearchExactScoringFailed        MessageID = "search.exact_scoring_failed"
	MessageSearchGPUEmbeddingUnavailable   MessageID = "search.gpu_embedding_index_unavailable"
	MessageSearchDimensionsPositive        MessageID = "search.dimensions_must_be_positive"
)
const (
	MessageSearchVectorFileMagicInvalid           MessageID = "search.vector_file_magic_invalid"
	MessageSearchVectorFileVersionUnsupported     MessageID = "search.vector_file_version_unsupported"
	MessageSearchVectorFileDimensionsMismatch     MessageID = "search.vector_file_dimensions_mismatch"
	MessageSearchVectorMetaDimensionsMismatch     MessageID = "search.vector_meta_dimensions_mismatch"
	MessageSearchGPUNotEnabled                    MessageID = "search.gpu_not_enabled"
	MessageSearchVectorDimensionsInvalid          MessageID = "search.vector_dimensions_invalid"
	MessageSearchIVFPQVectorStoreRequired         MessageID = "search.ivfpq_vector_store_required"
	MessageSearchIVFPQDimensionsInvalid           MessageID = "search.ivfpq_dimensions_invalid"
	MessageSearchIVFPQSegmentsInvalid             MessageID = "search.ivfpq_segments_invalid"
	MessageSearchIVFPQTrainingVectorsInsufficient MessageID = "search.ivfpq_training_vectors_insufficient"
	MessageSearchIVFCoarseTrainingFailed          MessageID = "search.ivf_coarse_training_failed"
	MessageSearchPQCodebookTrainingFailed         MessageID = "search.pq_codebook_training_failed"
	MessageSearchHNSWGPUBuildDimensionInvalid     MessageID = "search.hnsw_gpu_build_dimension_invalid"
	MessageSearchGPUAcceleratorUnavailable        MessageID = "search.gpu_accelerator_unavailable"
	MessageSearchCUDANotAvailable                 MessageID = "search.cuda_not_available"
	MessageSearchVulkanNotAvailable               MessageID = "search.vulkan_not_available"
	MessageSearchVulkanDeviceNotInitialized       MessageID = "search.vulkan_device_not_initialized"
	MessageSearchIVFPQVectorStoreUnavailable      MessageID = "search.ivfpq_vector_store_unavailable"
)
const (
	MessageSearchRerankRequestMarshalFailed  MessageID = "search.rerank_request_marshal_failed"
	MessageSearchRerankRequestCreationFailed MessageID = "search.rerank_request_creation_failed"
	MessageSearchRerankRequestFailed         MessageID = "search.rerank_request_failed"
	MessageSearchRerankAPIStatus             MessageID = "search.rerank_api_status"
	MessageSearchRerankResponseParseFailed   MessageID = "search.rerank_response_parse_failed"
	MessageSearchRerankResponseUnrecognized  MessageID = "search.rerank_response_unrecognized"
)
const (
	MessageInvalidHeader             MessageID = "security.invalid_header"
	MessageInvalidAuthorizationToken MessageID = "security.invalid_authorization_token"
	MessageInvalidTokenParameter     MessageID = "security.invalid_token_parameter"
	MessageInvalidURLParameter       MessageID = "security.invalid_url_parameter"
)
const (
	MessageRoleEntitlementsUnavailable   MessageID = "server.role_entitlements_unavailable"
	MessageRoleEntitlementsBody          MessageID = "server.role_entitlements_body_invalid"
	MessageRolesUnavailableDetailed      MessageID = "server.roles_unavailable_detailed"
	MessageRoleAlreadyExists             MessageID = "server.role_already_exists"
	MessageRolesUnavailable              MessageID = "server.roles_unavailable"
	MessageNewRoleAlreadyExists          MessageID = "server.new_role_already_exists"
	MessageRoleInUse                     MessageID = "server.role_in_use"
	MessagePatchOrDeleteRequired         MessageID = "server.method_patch_or_delete_required"
	MessageDatabaseAllowlistUnavailable  MessageID = "server.database_allowlist_unavailable"
	MessageDatabasePrivilegesUnavailable MessageID = "server.database_privileges_unavailable"
	MessageDatabaseNameRequired          MessageID = "server.database_name_required"
	MessageUnknownEndpoint               MessageID = "server.unknown_endpoint"
	MessageUnknownTransactionEndpoint    MessageID = "server.unknown_transaction_endpoint"
	MessageGPUUnavailable                MessageID = "server.gpu_unavailable"
	MessageHeimdallDisabled              MessageID = "server.heimdall_disabled"
	MessageHeimdallInitializing          MessageID = "server.heimdall_initializing"
	MessageGPUAccelerationEnabled        MessageID = "server.gpu_acceleration_enabled"
	MessageGPUAccelerationDisabled       MessageID = "server.gpu_acceleration_disabled"
	MessageEmbeddingRegenerationStarted  MessageID = "server.embedding_regeneration_started"
	MessageEmbeddingWorkerAlreadyRunning MessageID = "server.embedding_worker_already_running"
	MessageEmbeddingWorkerTriggered      MessageID = "server.embedding_worker_triggered"
	MessageRetentionPolicyDeleted        MessageID = "server.retention_policy_deleted"
	MessageRetentionHoldReleased         MessageID = "server.retention_hold_released"
	MessageRetentionSweepTriggered       MessageID = "server.retention_sweep_triggered"
	MessageBackupComplete                MessageID = "server.backup_complete"
)
const (
	MessageStorageClientAsyncFlushIncompleteDetailed       MessageID = "storage.client.async.flush_incomplete_detailed"
	MessageStorageClientAsyncFlushIncomplete               MessageID = "storage.client.async.flush_incomplete"
	MessageStorageClientAsyncCloseFailed                   MessageID = "storage.client.async.close_failed"
	MessageStorageClientAsyncCloseEngineFailed             MessageID = "storage.client.async.close_engine_failed"
	MessageStorageClientNodeIDNamespaceUnprefixed          MessageID = "storage.client.node.id_namespace_unprefixed"
	MessageStorageClientNodeIDNamespaceRequired            MessageID = "storage.client.node.id_namespace_required"
	MessageStorageClientNodeEncodeFailed                   MessageID = "storage.client.node.encode_failed"
	MessageStorageClientNodeWriteFailed                    MessageID = "storage.client.node.write_failed"
	MessageStorageClientNodeLabelIndexKeyBuildFailed       MessageID = "storage.client.node.label_index_key_build_failed"
	MessageStorageClientNodeLabelIndexWriteFailed          MessageID = "storage.client.node.label_index_write_failed"
	MessageStorageClientNodeIndexCatalogWriteFailed        MessageID = "storage.client.node.index_catalog_write_failed"
	MessageStorageClientNodePendingEmbedIndexWriteFailed   MessageID = "storage.client.node.pending_embed_index_write_failed"
	MessageStorageClientNodeEmbeddingChunkDeleteFailed     MessageID = "storage.client.node.embedding_chunk_delete_failed"
	MessageStorageClientNodeEmbeddingChunksDeleteFailed    MessageID = "storage.client.node.embedding_chunks_delete_failed"
	MessageStorageClientNodeEmbeddingChunkStoreFailed      MessageID = "storage.client.node.embedding_chunk_store_failed"
	MessageStorageClientNodeEmbeddingPayloadBudgetExceeded MessageID = "storage.client.node.embedding_payload_budget_exceeded"
	MessageStorageClientEdgeEncodeFailed                   MessageID = "storage.client.edge.encode_failed"
	MessageStorageClientReceiptTransactionIDRequired       MessageID = "storage.client.receipt.transaction_id_required"
	MessageStorageClientReceiptWALSequenceRequired         MessageID = "storage.client.receipt.wal_sequence_required"
	MessageStorageClientReceiptWALRangeInvalid             MessageID = "storage.client.receipt.wal_range_invalid"
	MessageStorageClientReceiptNilReceiver                 MessageID = "storage.client.receipt.nil_receiver"
	MessageStorageClientReceiptHashMarshalFailed           MessageID = "storage.client.receipt.hash_marshal_failed"
	MessageStorageClientStorageClosed                      MessageID = "storage.client.storage_closed"
	MessageStorageClientBackupFileCreateFailed             MessageID = "storage.client.backup.file_create_failed"
	MessageStorageClientBackupFailed                       MessageID = "storage.client.backup.failed"
	MessageStorageClientBackupFlushFailed                  MessageID = "storage.client.backup.flush_failed"
	MessageStorageClientBackupSyncFailed                   MessageID = "storage.client.backup.sync_failed"
	MessageStorageClientDeletePrefixRequired               MessageID = "storage.client.delete_prefix.required"
	MessageStorageClientDropPrefixFailed                   MessageID = "storage.client.delete_prefix.drop_failed"
	MessageStorageClientCleanLabelIndexFailed              MessageID = "storage.client.delete_prefix.clean_label_index_failed"
	MessageStorageClientCleanEdgeTypeIndexFailed           MessageID = "storage.client.delete_prefix.clean_edge_type_index_failed"
)
const (
	MessageStorageCompositeConstituentNotFound          MessageID = "storagecomposite.constituent_not_found"
	MessageStorageCompositeNoWritableConstituents       MessageID = "storagecomposite.no_writable_constituents"
	MessageStorageCompositeWriteTargetAmbiguous         MessageID = "storagecomposite.write_target_ambiguous"
	MessageStorageCompositeEdgeRequired                 MessageID = "storagecomposite.edge_required"
	MessageStorageCompositeReadOnlyStartNode            MessageID = "storagecomposite.read_only_start_node"
	MessageStorageCompositeStartNodeNotFound            MessageID = "storagecomposite.start_node_not_found"
	MessageStorageCompositeConstituentQueryFailed       MessageID = "storagecomposite.constituent_query_failed"
	MessageStorageCompositeBulkWriteTargetAmbiguous     MessageID = "storagecomposite.bulk_write_target_ambiguous"
	MessageStorageCompositeConstituentLookupFailed      MessageID = "storagecomposite.constituent_lookup_failed"
	MessageStorageCompositeNodeBulkCreateFailed         MessageID = "storagecomposite.node_bulk_create_failed"
	MessageStorageCompositeStartNodeCheckFailed         MessageID = "storagecomposite.start_node_check_failed"
	MessageStorageCompositeEdgeBulkCreateFailed         MessageID = "storagecomposite.edge_bulk_create_failed"
	MessageStorageCompositeDefaultLookupFailed          MessageID = "storagecomposite.default_constituent_lookup_failed"
	MessageStorageCompositeUnroutedEdgeBulkCreateFailed MessageID = "storagecomposite.unrouted_edge_bulk_create_failed"
	MessageStorageCompositeConstituentCloseFailed       MessageID = "storagecomposite.constituent_close_failed"
	MessageStorageCompositeNodeCountFailed              MessageID = "storagecomposite.node_count_failed"
	MessageStorageCompositeEdgeCountFailed              MessageID = "storagecomposite.edge_count_failed"
	MessageStorageCompositeDeleteByPrefixUnsupported    MessageID = "storagecomposite.delete_by_prefix_unsupported"
	MessageStorageCompositeConstituentStreamFailed      MessageID = "storagecomposite.constituent_stream_failed"
)
const (
	MessageStorageLoaderLoadingNodes            MessageID = "storage.loader.loading_nodes"
	MessageStorageLoaderLoadingRelationships    MessageID = "storage.loader.loading_relationships"
	MessageStorageLoaderOpeningFile             MessageID = "storage.loader.opening_file"
	MessageStorageLoaderDecodingJSON            MessageID = "storage.loader.decoding_json"
	MessageStorageLoaderCreatingNodes           MessageID = "storage.loader.creating_nodes"
	MessageStorageLoaderCreatingEdges           MessageID = "storage.loader.creating_edges"
	MessageStorageLoaderExportEngineUnsupported MessageID = "storage.loader.export_engine_unsupported"
	MessageStorageLoaderGettingAllNodes         MessageID = "storage.loader.getting_all_nodes"
	MessageStorageLoaderGettingAllEdges         MessageID = "storage.loader.getting_all_edges"
	MessageStorageLoaderCreatingFile            MessageID = "storage.loader.creating_file"
	MessageStorageLoaderEncodingJSON            MessageID = "storage.loader.encoding_json"
	MessageStorageLoaderParsingNodeJSON         MessageID = "storage.loader.parsing_node_json"
	MessageStorageLoaderConvertingNode          MessageID = "storage.loader.converting_node"
	MessageStorageLoaderScanningFile            MessageID = "storage.loader.scanning_file"
	MessageStorageLoaderParsingRelationshipJSON MessageID = "storage.loader.parsing_relationship_json"
	MessageStorageLoaderConvertingRelationship  MessageID = "storage.loader.converting_relationship"
	MessageStorageLoaderGettingNodes            MessageID = "storage.loader.getting_nodes"
	MessageStorageLoaderGettingEdges            MessageID = "storage.loader.getting_edges"
)
const (
	MessageStorageSchemaConstraintAlreadyExists             MessageID = "storageschema.constraint_already_exists"
	MessageStorageSchemaConstraintDifferentAllowedValues    MessageID = "storageschema.constraint_different_allowed_values"
	MessageStorageSchemaConstraintDifferentMaxCount         MessageID = "storageschema.constraint_different_max_count"
	MessageStorageSchemaConstraintDifferentSchemaOrType     MessageID = "storageschema.constraint_different_schema_or_type"
	MessageStorageSchemaConflictingPolicy                   MessageID = "storageschema.conflicting_policy"
	MessageStorageSchemaConflictingDomainConstraint         MessageID = "storageschema.conflicting_domain_constraint"
	MessageStorageSchemaConflictingCardinalityConstraint    MessageID = "storageschema.conflicting_cardinality_constraint"
	MessageStorageSchemaEquivalentConstraintAlreadyExists   MessageID = "storageschema.equivalent_constraint_already_exists"
	MessageStorageSchemaConflictingConstraintAlreadyExists  MessageID = "storageschema.conflicting_constraint_already_exists"
	MessageStorageSchemaUniqueConstraintViolation           MessageID = "storageschema.unique_constraint_violation"
	MessageStorageSchemaCompositeIndexMinProperties         MessageID = "storageschema.composite_index_min_properties"
	MessageStorageSchemaRangeIndexPropertiesRequired        MessageID = "storageschema.range_index_properties_required"
	MessageStorageSchemaRangeIndexNotFound                  MessageID = "storageschema.range_index_not_found"
	MessageStorageSchemaRangeIndexNumericValueRequired      MessageID = "storageschema.range_index_numeric_value_required"
	MessageStorageSchemaIndexNotFound                       MessageID = "storageschema.index_not_found"
	MessageStorageSchemaConstraintNotFound                  MessageID = "storageschema.constraint_not_found"
	MessageStorageSchemaPropertyIndexNotFound               MessageID = "storageschema.property_index_not_found"
	MessageStorageSchemaDecayProfileBundleAlreadyExists     MessageID = "storageschema.decay_profile_bundle_already_exists"
	MessageStorageSchemaDecayProfileBindingAlreadyExists    MessageID = "storageschema.decay_profile_binding_already_exists"
	MessageStorageSchemaDecayProfileBundleNotFound          MessageID = "storageschema.decay_profile_bundle_not_found"
	MessageStorageSchemaDecayProfileBundleReferenced        MessageID = "storageschema.decay_profile_bundle_referenced"
	MessageStorageSchemaDecayProfileNotFound                MessageID = "storageschema.decay_profile_not_found"
	MessageStorageSchemaPromotionProfileAlreadyExists       MessageID = "storageschema.promotion_profile_already_exists"
	MessageStorageSchemaPromotionProfileNotFound            MessageID = "storageschema.promotion_profile_not_found"
	MessageStorageSchemaPromotionProfileReferenced          MessageID = "storageschema.promotion_profile_referenced"
	MessageStorageSchemaPromotionPolicyAlreadyExists        MessageID = "storageschema.promotion_policy_already_exists"
	MessageStorageSchemaPromotionProfileWhenClauseNotFound  MessageID = "storageschema.promotion_profile_when_clause_not_found"
	MessageStorageSchemaPromotionPolicyNotFound             MessageID = "storageschema.promotion_policy_not_found"
	MessageStorageSchemaDecayEdgeBindingConflict            MessageID = "storageschema.decay_edge_binding_conflict"
	MessageStorageSchemaDecayLabelBindingConflict           MessageID = "storageschema.decay_label_binding_conflict"
	MessageStorageSchemaDecayStructuralIndexConflict        MessageID = "storageschema.decay_structural_index_conflict"
	MessageStorageSchemaDecayProfileBundleNameRequired      MessageID = "storageschema.decay_profile_bundle_name_required"
	MessageStorageSchemaInvalidDecayFunction                MessageID = "storageschema.invalid_decay_function"
	MessageStorageSchemaInvalidScoreFromMode                MessageID = "storageschema.invalid_score_from_mode"
	MessageStorageSchemaInvalidScopeType                    MessageID = "storageschema.invalid_scope_type"
	MessageStorageSchemaScoreFromPropertyRequired           MessageID = "storageschema.score_from_property_required"
	MessageStorageSchemaVisibilityThresholdOutOfRange       MessageID = "storageschema.visibility_threshold_out_of_range"
	MessageStorageSchemaScoreFloorOutOfRange                MessageID = "storageschema.score_floor_out_of_range"
	MessageStorageSchemaPromotionProfileNameRequired        MessageID = "storageschema.promotion_profile_name_required"
	MessageStorageSchemaMultiplierNonNegative               MessageID = "storageschema.multiplier_non_negative"
	MessageStorageSchemaScoreCapOutOfRange                  MessageID = "storageschema.score_cap_out_of_range"
	MessageStorageSchemaUnknownOption                       MessageID = "storageschema.unknown_option"
	MessageStorageSchemaConstraintContractAlreadyExists     MessageID = "storageschema.constraint_contract_already_exists"
	MessageStorageSchemaConstraintContractNameConflict      MessageID = "storageschema.constraint_contract_name_conflict"
	MessageStorageSchemaScanNodesFailed                     MessageID = "storageschema.scan_nodes_failed"
	MessageStorageSchemaScanRelationshipsFailed             MessageID = "storageschema.scan_relationships_failed"
	MessageStorageSchemaUnsupportedContractTargetEntityType MessageID = "storageschema.unsupported_contract_target_entity_type"
	MessageStorageSchemaConstraintContractInvalid           MessageID = "storageschema.constraint_contract_invalid"
	MessageStorageSchemaConstraintContractViolated          MessageID = "storageschema.constraint_contract_violated"
	MessageStorageSchemaUnsupportedNodePredicate            MessageID = "storageschema.unsupported_node_predicate"
	MessageStorageSchemaMissingRelationshipEndpoint         MessageID = "storageschema.missing_relationship_endpoint"
	MessageStorageSchemaUnsupportedRelationshipPredicate    MessageID = "storageschema.unsupported_relationship_predicate"
	MessageStorageSchemaUnsupportedConstraintPattern        MessageID = "storageschema.unsupported_constraint_pattern"
	MessageStorageSchemaUnsupportedConstraintLiteral        MessageID = "storageschema.unsupported_constraint_literal"
)
const (
	MessageStorageRemoteURIRequired                         MessageID = "storage.remote.uri_required"
	MessageStorageRemoteDatabaseRequired                    MessageID = "storage.remote.database_required"
	MessageStorageRemoteURISchemeUnsupported                MessageID = "storage.remote.uri_scheme_unsupported"
	MessageStorageRemoteBoltDriverCreateFailed              MessageID = "storage.remote.bolt_driver_create_failed"
	MessageStorageRemoteResultKeysFailed                    MessageID = "storage.remote.result_keys_failed"
	MessageStorageRemoteTransactionDecodeFailed             MessageID = "storage.remote.transaction_decode_failed"
	MessageStorageRemoteError                               MessageID = "storage.remote.error"
	MessageStorageRemoteTransactionOpenDecodeFailed         MessageID = "storage.remote.transaction_open_decode_failed"
	MessageStorageRemoteTransactionCommitURLMissing         MessageID = "storage.remote.transaction_commit_url_missing"
	MessageStorageRemoteTransactionClosed                   MessageID = "storage.remote.transaction_closed"
	MessageStorageRemoteNodeMapExpected                     MessageID = "storage.remote.node_map_expected"
	MessageStorageRemoteRelationshipMapExpected             MessageID = "storage.remote.relationship_map_expected"
	MessageStorageRemoteCreateNodeNoRows                    MessageID = "storage.remote.create_node_no_rows"
	MessageStorageRemoteDeletePrefixUnsupported             MessageID = "storage.remote.delete_prefix_unsupported"
	MessageStoragePropertyInvalidValue                      MessageID = "storage.property.invalid_value"
	MessageStoragePropertyInvalidIndex                      MessageID = "storage.property.invalid_index"
	MessageStoragePropertyInvalidMapKey                     MessageID = "storage.property.invalid_map_key"
	MessageStoragePropertyTypeUnsupported                   MessageID = "storage.property.type_unsupported"
	MessageStorageValidationUnknownConstraintType           MessageID = "storage.validation.unknown_constraint_type"
	MessageStorageValidationRefreshUniqueScanFailed         MessageID = "storage.validation.refresh_unique_scan_failed"
	MessageStorageValidationRefreshUniqueFailed             MessageID = "storage.validation.refresh_unique_failed"
	MessageStorageValidationScanEdgesFailed                 MessageID = "storage.validation.scan_edges_failed"
	MessageStorageValidationRelationshipConstraintType      MessageID = "storage.validation.relationship_constraint_type_unsupported"
	MessageStorageValidationRelationshipUniqueDuplicate     MessageID = "storage.validation.relationship_unique_duplicate"
	MessageStorageValidationRelationshipCompositeDuplicate  MessageID = "storage.validation.relationship_composite_duplicate"
	MessageStorageValidationRelationshipPropertyMissing     MessageID = "storage.validation.relationship_property_missing"
	MessageStorageValidationEdgeKeyNull                     MessageID = "storage.validation.edge_key_null"
	MessageStorageValidationTemporalPropertiesAtLeastThree  MessageID = "storage.validation.temporal_properties_at_least_three"
	MessageStorageValidationTemporalCreationFailed          MessageID = "storage.validation.temporal_creation_failed"
	MessageStorageValidationTemporalEdgeInvalid             MessageID = "storage.validation.temporal_edge_invalid"
	MessageStorageValidationTemporalEdgesOverlap            MessageID = "storage.validation.temporal_edges_overlap"
	MessageStorageValidationDomainPropertyCount             MessageID = "storage.validation.domain_property_count"
	MessageStorageValidationDomainAllowedValuesRequired     MessageID = "storage.validation.domain_allowed_values_required"
	MessageStorageValidationScanNodesFailed                 MessageID = "storage.validation.scan_nodes_failed"
	MessageStorageValidationDomainNodeInvalid               MessageID = "storage.validation.domain_node_invalid"
	MessageStorageValidationDomainEdgeInvalid               MessageID = "storage.validation.domain_edge_invalid"
	MessageStorageValidationCardinalityCreationExceeded     MessageID = "storage.validation.cardinality_creation_exceeded"
	MessageStorageValidationDisallowedPolicyCreation        MessageID = "storage.validation.disallowed_policy_creation"
	MessageStorageValidationAllowedPolicyCreation           MessageID = "storage.validation.allowed_policy_creation"
	MessageStorageValidationUniquePropertyCount             MessageID = "storage.validation.unique_property_count"
	MessageStorageValidationNodeUniqueDuplicate             MessageID = "storage.validation.node_unique_duplicate"
	MessageStorageValidationNodeKeyPropertyRequired         MessageID = "storage.validation.node_key_property_required"
	MessageStorageValidationNodeKeyNullCreation             MessageID = "storage.validation.node_key_null_creation"
	MessageStorageValidationNodeKeyDuplicateCreation        MessageID = "storage.validation.node_key_duplicate_creation"
	MessageStorageValidationExistsPropertyCount             MessageID = "storage.validation.exists_property_count"
	MessageStorageValidationNodeExistsMissingCreation       MessageID = "storage.validation.node_exists_missing_creation"
	MessageStorageValidationTemporalPropertiesExactlyThree  MessageID = "storage.validation.temporal_properties_exactly_three"
	MessageStorageValidationTemporalNodeKeyNullCreation     MessageID = "storage.validation.temporal_node_key_null_creation"
	MessageStorageValidationTemporalNodeInvalidCreation     MessageID = "storage.validation.temporal_node_invalid_creation"
	MessageStorageValidationTemporalNodesOverlapCreation    MessageID = "storage.validation.temporal_nodes_overlap_creation"
	MessageStorageValidationRelationshipUniquePropertyCount MessageID = "storage.validation.relationship_unique_property_count"
	MessageStorageValidationRelationshipExistsPropertyCount MessageID = "storage.validation.relationship_exists_property_count"
	MessageStorageValidationRelationshipExistsMissing       MessageID = "storage.validation.relationship_exists_missing"
	MessageStorageValidationExpectedType                    MessageID = "storage.validation.expected_type"
	MessageStorageValidationUnknownPropertyType             MessageID = "storage.validation.unknown_property_type"
	MessageStorageValidationNodePropertyInvalid             MessageID = "storage.validation.node_property_invalid"
	MessageStorageValidationRelationshipPropertyInvalid     MessageID = "storage.validation.relationship_property_invalid"
	MessageStorageTransactionEngineClosed                   MessageID = "storage.transaction.engine_closed"
	MessageStorageTransactionNamespaceRequired              MessageID = "storage.transaction.namespace_required"
	MessageStorageTransactionCrossNamespace                 MessageID = "storage.transaction.cross_namespace"
	MessageStorageTransactionIDNamespaceRequired            MessageID = "storage.transaction.id_namespace_required"
	MessageStorageTransactionStartNodeMissing               MessageID = "storage.transaction.start_node_missing"
	MessageStorageTransactionEndNodeMissing                 MessageID = "storage.transaction.end_node_missing"
	MessageStorageTransactionConstraintViolation            MessageID = "storage.transaction.constraint_violation"
	MessageStorageTransactionCommitNamespaceMissing         MessageID = "storage.transaction.commit_namespace_missing"
	MessageStorageTransactionCommitConflict                 MessageID = "storage.transaction.commit_conflict"
	MessageStorageTransactionMetadataTooLarge               MessageID = "storage.transaction.metadata_too_large"
	MessageStorageTransactionEdgeChanged                    MessageID = "storage.transaction.edge_changed"
	MessageStorageTransactionNodeChanged                    MessageID = "storage.transaction.node_changed"
	MessageStorageTransactionNodeChangedDetailed            MessageID = "storage.transaction.node_changed_detailed"
	MessageStorageTransactionConcurrentModification         MessageID = "storage.transaction.concurrent_modification"
	MessageStorageTransactionEndpointDeleted                MessageID = "storage.transaction.endpoint_deleted"
	MessageStorageTransactionAdjacentEdgeChanged            MessageID = "storage.transaction.adjacent_edge_changed"
	MessageStorageValidationPropertyDomainInvalid           MessageID = "storage.validation.property_domain_invalid"
	MessageStorageValidationPropertyTypeRequired            MessageID = "storage.validation.property_type_required"
	MessageStorageValidationNodeUniqueInTransaction         MessageID = "storage.validation.node_unique_in_transaction"
	MessageStorageValidationNodeUniqueExisting              MessageID = "storage.validation.node_unique_existing"
	MessageStorageValidationNodeUniqueConcurrent            MessageID = "storage.validation.node_unique_concurrent"
	MessageStorageValidationNodeKeyNull                     MessageID = "storage.validation.node_key_null"
	MessageStorageValidationNodeKeyInTransaction            MessageID = "storage.validation.node_key_in_transaction"
	MessageStorageValidationNodeCompositeKeyExisting        MessageID = "storage.validation.node_composite_key_existing"
	MessageStorageValidationRequiredPropertyMissing         MessageID = "storage.validation.required_property_missing"
	MessageStorageValidationTemporalKeyNull                 MessageID = "storage.validation.temporal_key_null"
	MessageStorageValidationTemporalStartInvalid            MessageID = "storage.validation.temporal_start_invalid"
	MessageStorageValidationTemporalNodeRequired            MessageID = "storage.validation.temporal_node_required"
	MessageStorageValidationTemporalNodeOverlap             MessageID = "storage.validation.temporal_node_overlap"
	MessageStorageValidationRelationshipUniqueExisting      MessageID = "storage.validation.relationship_unique_existing"
	MessageStorageValidationRelationshipCompositeExisting   MessageID = "storage.validation.relationship_composite_existing"
	MessageStorageValidationTemporalEdgeOverlap             MessageID = "storage.validation.temporal_edge_overlap"
	MessageStorageValidationCardinalityExceeded             MessageID = "storage.validation.cardinality_exceeded"
	MessageStorageValidationDisallowedPolicy                MessageID = "storage.validation.disallowed_policy"
	MessageStorageValidationAllowedPolicy                   MessageID = "storage.validation.allowed_policy"
	MessageStorageValidationLabelChangeDisallowed           MessageID = "storage.validation.label_change_disallowed"
	MessageStorageValidationLabelChangeAllowed              MessageID = "storage.validation.label_change_allowed"
)
const (
	MessageNornicDBRetentionSweepBudgetExhausted MessageID = "nornicdb.retention_sweep_budget_exhausted"
)

type ProcessPreferences

type ProcessPreferences struct {
	Preferences  []language.Tag
	Source       string
	DetectionErr error
}

ProcessPreferences records startup language preferences and their source.

func ResolveProcessPreferences

func ResolveProcessPreferences(configLanguage string) (ProcessPreferences, error)

ResolveProcessPreferences applies environment, config, OS, and source fallback precedence.

type ServerSearchTimingFields

type ServerSearchTimingFields struct {
	Status        string
	Database      string
	Total         time.Duration
	ServiceLookup time.Duration
	EmbedTotal    time.Duration
	EmbedCalls    int
	EmbedOK       int
	SearchTotal   time.Duration
	SearchCalls   int
	Chunks        int
	VectorChunks  int
	ChunkLoop     time.Duration
	FallbackBM25  int
	Error         error
	SearchMethod  string
	Fallback      bool
	Results       int
}

ServerSearchTimingFields contains the stable fields emitted by search diagnostics.

Directories

Path Synopsis
internal
proceduremetadata command
Command proceduremetadata generates typed core procedure metadata and catalogs.
Command proceduremetadata generates typed core procedure metadata and catalogs.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL