API
Client is a connection pool and is safe for concurrent use.
type Client struct {
// contains filtered or unexported fields
}
func CreateClient(ctx context.Context, opts Options) (*Client, error)
CreateClient returns a new client. The client connects lazily. Call Client.EnsureConnected() to force a connection.
func CreateClientDSN(ctx context.Context, dsn string, opts Options) (*Client, error)
CreateClientDSN returns a new client. See also CreateClient.
dsn is either an instance name https://www.edgedb.com/docs/clients/connection or it specifies a single string in the following format:
edgedb://user:password@host:port/database?option=value.
The following options are recognized: host, port, user, database, password.
func (p *Client) Close() error
Close closes all connections in the pool. Calling close blocks until all acquired connections have been released, and returns an error if called more than once.
func (p *Client) EnsureConnected(ctx context.Context) error
EnsureConnected forces the client to connect if it hasn’t already.
func (p *Client) Execute(
ctx context.Context,
cmd string,
args ...interface{},
) error
Execute an EdgeQL command (or commands).
func (p *Client) Query(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
Query runs a query and returns the results.
func (p *Client) QueryJSON(
ctx context.Context,
cmd string,
out *[]byte,
args ...interface{},
) error
QueryJSON runs a query and return the results as JSON.
func (p *Client) QuerySingle(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
QuerySingle runs a singleton-returning query and returns its element. If the query executes successfully but doesn’t return a result a NoDataError is returned.
func (p *Client) QuerySingleJSON(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
QuerySingleJSON runs a singleton-returning query. If the query executes successfully but doesn’t have a result a NoDataError is returned.
func (p *Client) Tx(ctx context.Context, action TxBlock) error
Tx runs an action in a transaction retrying failed actions if they might succeed on a subsequent attempt.
Retries are governed by retry rules. The default rule can be set with WithRetryRule(). For more fine grained control a retry rule can be set for each defined RetryCondition using WithRetryCondition(). When a transaction fails but is retryable the rule for the failure condition is used to determine if the transaction should be tried again based on RetryRule.Attempts and the amount of time to wait before retrying is determined by RetryRule.Backoff. If either field is unset (see RetryRule) then the default rule is used. If the object’s default is unset the fall back is 3 attempts and exponential backoff.
func (p Client) WithConfig(
cfg map[string]interface{},
) *Client
WithConfig sets configuration values for the returned client.
func (p Client) WithGlobals(
globals map[string]interface{},
) *Client
WithGlobals sets values for global variables for the returned client.
func (p Client) WithModuleAliases(
aliases ...ModuleAlias,
) *Client
WithModuleAliases sets module name aliases for the returned client.
func (p Client) WithRetryOptions(
opts RetryOptions,
) *Client
WithRetryOptions returns a shallow copy of the client with the RetryOptions set to opts.
func (p Client) WithTxOptions(opts TxOptions) *Client
WithTxOptions returns a shallow copy of the client with the TxOptions set to opts.
func (p Client) WithoutConfig(key ...string) *Client
WithoutConfig unsets configuration values for the returned client.
func (p Client) WithoutGlobals(globals ...string) *Client
WithoutGlobals unsets values for global variables for the returned client.
func (p Client) WithoutModuleAliases(
aliases ...string,
) *Client
WithoutModuleAliases unsets module name aliases for the returned client.
Error is the error type returned from edgedb.
type Error interface {
Error() string
Unwrap() error
// HasTag returns true if the error is marked with the supplied tag.
HasTag(ErrorTag) bool
// Category returns true if the error is in the provided category.
Category(ErrorCategory) bool
}
ErrorCategory values represent EdgeDB’s error types.
type ErrorCategory string
const (
InternalServerError ErrorCategory = "errors::InternalServerError"
UnsupportedFeatureError ErrorCategory = "errors::UnsupportedFeatureError"
ProtocolError ErrorCategory = "errors::ProtocolError"
BinaryProtocolError ErrorCategory = "errors::BinaryProtocolError"
UnsupportedProtocolVersionError ErrorCategory = "errors::UnsupportedProtocolVersionError"
TypeSpecNotFoundError ErrorCategory = "errors::TypeSpecNotFoundError"
UnexpectedMessageError ErrorCategory = "errors::UnexpectedMessageError"
InputDataError ErrorCategory = "errors::InputDataError"
ParameterTypeMismatchError ErrorCategory = "errors::ParameterTypeMismatchError"
StateMismatchError ErrorCategory = "errors::StateMismatchError"
ResultCardinalityMismatchError ErrorCategory = "errors::ResultCardinalityMismatchError"
CapabilityError ErrorCategory = "errors::CapabilityError"
UnsupportedCapabilityError ErrorCategory = "errors::UnsupportedCapabilityError"
DisabledCapabilityError ErrorCategory = "errors::DisabledCapabilityError"
QueryError ErrorCategory = "errors::QueryError"
InvalidSyntaxError ErrorCategory = "errors::InvalidSyntaxError"
EdgeQLSyntaxError ErrorCategory = "errors::EdgeQLSyntaxError"
SchemaSyntaxError ErrorCategory = "errors::SchemaSyntaxError"
GraphQLSyntaxError ErrorCategory = "errors::GraphQLSyntaxError"
InvalidTypeError ErrorCategory = "errors::InvalidTypeError"
InvalidTargetError ErrorCategory = "errors::InvalidTargetError"
InvalidLinkTargetError ErrorCategory = "errors::InvalidLinkTargetError"
InvalidPropertyTargetError ErrorCategory = "errors::InvalidPropertyTargetError"
InvalidReferenceError ErrorCategory = "errors::InvalidReferenceError"
UnknownModuleError ErrorCategory = "errors::UnknownModuleError"
UnknownLinkError ErrorCategory = "errors::UnknownLinkError"
UnknownPropertyError ErrorCategory = "errors::UnknownPropertyError"
UnknownUserError ErrorCategory = "errors::UnknownUserError"
UnknownDatabaseError ErrorCategory = "errors::UnknownDatabaseError"
UnknownParameterError ErrorCategory = "errors::UnknownParameterError"
SchemaError ErrorCategory = "errors::SchemaError"
SchemaDefinitionError ErrorCategory = "errors::SchemaDefinitionError"
InvalidDefinitionError ErrorCategory = "errors::InvalidDefinitionError"
InvalidModuleDefinitionError ErrorCategory = "errors::InvalidModuleDefinitionError"
InvalidLinkDefinitionError ErrorCategory = "errors::InvalidLinkDefinitionError"
InvalidPropertyDefinitionError ErrorCategory = "errors::InvalidPropertyDefinitionError"
InvalidUserDefinitionError ErrorCategory = "errors::InvalidUserDefinitionError"
InvalidDatabaseDefinitionError ErrorCategory = "errors::InvalidDatabaseDefinitionError"
InvalidOperatorDefinitionError ErrorCategory = "errors::InvalidOperatorDefinitionError"
InvalidAliasDefinitionError ErrorCategory = "errors::InvalidAliasDefinitionError"
InvalidFunctionDefinitionError ErrorCategory = "errors::InvalidFunctionDefinitionError"
InvalidConstraintDefinitionError ErrorCategory = "errors::InvalidConstraintDefinitionError"
InvalidCastDefinitionError ErrorCategory = "errors::InvalidCastDefinitionError"
DuplicateDefinitionError ErrorCategory = "errors::DuplicateDefinitionError"
DuplicateModuleDefinitionError ErrorCategory = "errors::DuplicateModuleDefinitionError"
DuplicateLinkDefinitionError ErrorCategory = "errors::DuplicateLinkDefinitionError"
DuplicatePropertyDefinitionError ErrorCategory = "errors::DuplicatePropertyDefinitionError"
DuplicateUserDefinitionError ErrorCategory = "errors::DuplicateUserDefinitionError"
DuplicateDatabaseDefinitionError ErrorCategory = "errors::DuplicateDatabaseDefinitionError"
DuplicateOperatorDefinitionError ErrorCategory = "errors::DuplicateOperatorDefinitionError"
DuplicateViewDefinitionError ErrorCategory = "errors::DuplicateViewDefinitionError"
DuplicateFunctionDefinitionError ErrorCategory = "errors::DuplicateFunctionDefinitionError"
DuplicateConstraintDefinitionError ErrorCategory = "errors::DuplicateConstraintDefinitionError"
DuplicateCastDefinitionError ErrorCategory = "errors::DuplicateCastDefinitionError"
SessionTimeoutError ErrorCategory = "errors::SessionTimeoutError"
IdleSessionTimeoutError ErrorCategory = "errors::IdleSessionTimeoutError"
QueryTimeoutError ErrorCategory = "errors::QueryTimeoutError"
TransactionTimeoutError ErrorCategory = "errors::TransactionTimeoutError"
IdleTransactionTimeoutError ErrorCategory = "errors::IdleTransactionTimeoutError"
ExecutionError ErrorCategory = "errors::ExecutionError"
InvalidValueError ErrorCategory = "errors::InvalidValueError"
DivisionByZeroError ErrorCategory = "errors::DivisionByZeroError"
NumericOutOfRangeError ErrorCategory = "errors::NumericOutOfRangeError"
AccessPolicyError ErrorCategory = "errors::AccessPolicyError"
IntegrityError ErrorCategory = "errors::IntegrityError"
ConstraintViolationError ErrorCategory = "errors::ConstraintViolationError"
CardinalityViolationError ErrorCategory = "errors::CardinalityViolationError"
MissingRequiredError ErrorCategory = "errors::MissingRequiredError"
TransactionError ErrorCategory = "errors::TransactionError"
TransactionConflictError ErrorCategory = "errors::TransactionConflictError"
TransactionSerializationError ErrorCategory = "errors::TransactionSerializationError"
TransactionDeadlockError ErrorCategory = "errors::TransactionDeadlockError"
ConfigurationError ErrorCategory = "errors::ConfigurationError"
AccessError ErrorCategory = "errors::AccessError"
AuthenticationError ErrorCategory = "errors::AuthenticationError"
AvailabilityError ErrorCategory = "errors::AvailabilityError"
BackendUnavailableError ErrorCategory = "errors::BackendUnavailableError"
BackendError ErrorCategory = "errors::BackendError"
UnsupportedBackendFeatureError ErrorCategory = "errors::UnsupportedBackendFeatureError"
ClientError ErrorCategory = "errors::ClientError"
ClientConnectionError ErrorCategory = "errors::ClientConnectionError"
ClientConnectionFailedError ErrorCategory = "errors::ClientConnectionFailedError"
ClientConnectionFailedTemporarilyError ErrorCategory = "errors::ClientConnectionFailedTemporarilyError"
ClientConnectionTimeoutError ErrorCategory = "errors::ClientConnectionTimeoutError"
ClientConnectionClosedError ErrorCategory = "errors::ClientConnectionClosedError"
InterfaceError ErrorCategory = "errors::InterfaceError"
QueryArgumentError ErrorCategory = "errors::QueryArgumentError"
MissingArgumentError ErrorCategory = "errors::MissingArgumentError"
UnknownArgumentError ErrorCategory = "errors::UnknownArgumentError"
InvalidArgumentError ErrorCategory = "errors::InvalidArgumentError"
NoDataError ErrorCategory = "errors::NoDataError"
InternalClientError ErrorCategory = "errors::InternalClientError"
)
ErrorTag is the argument type to Error.HasTag().
type ErrorTag string
const (
ShouldRetry ErrorTag = "SHOULD_RETRY"
ShouldReconnect ErrorTag = "SHOULD_RECONNECT"
)
IsolationLevel documentation can be found here https://www.edgedb.com/docs/reference/edgeql/tx_start#parameters
type IsolationLevel string
The available levels are:
const (
Serializable IsolationLevel = "serializable"
)
ModuleAlias is an alias name and module name pare.
type ModuleAlias struct {
Alias string
Module string
}
Options for connecting to an EdgeDB server
type Options struct {
// Host is an EdgeDB server host address, given as either an IP address or
// domain name. (Unix-domain socket paths are not supported)
//
// Host cannot be specified alongside the 'dsn' argument, or
// CredentialsFile option. Host will override all other credentials
// resolved from any environment variables, or project credentials with
// their defaults.
Host string
// Port is a port number to connect to at the server host.
//
// Port cannot be specified alongside the 'dsn' argument, or
// CredentialsFile option. Port will override all other credentials
// resolved from any environment variables, or project credentials with
// their defaults.
Port int
// Credentials is a JSON string containing connection credentials.
//
// Credentials cannot be specified alongside the 'dsn' argument, Host,
// Port, or CredentialsFile. Credentials will override all other
// credentials not present in the credentials string with their defaults.
Credentials []byte
// CredentialsFile is a path to a file containing connection credentials.
//
// CredentialsFile cannot be specified alongside the 'dsn' argument, Host,
// Port, or Credentials. CredentialsFile will override all other
// credentials not present in the credentials file with their defaults.
CredentialsFile string
// User is the name of the database role used for authentication.
//
// If not specified, the value is resolved from any compound
// argument/option, then from EDGEDB_USER, then any compound environment
// variable, then project credentials.
User string
// Database is the name of the database to connect to.
//
// If not specified, the value is resolved from any compound
// argument/option, then from EDGEDB_DATABASE, then any compound
// environment variable, then project credentials.
Database string
// Password to be used for authentication, if the server requires one.
//
// If not specified, the value is resolved from any compound
// argument/option, then from EDGEDB_PASSWORD, then any compound
// environment variable, then project credentials.
// Note that the use of the environment variable is discouraged
// as other users and applications may be able to read it
// without needing specific privileges.
Password OptionalStr
// ConnectTimeout is used when establishing connections in the background.
ConnectTimeout time.Duration
// WaitUntilAvailable determines how long to wait
// to reestablish a connection.
WaitUntilAvailable time.Duration
// Concurrency determines the maximum number of connections.
// If Concurrency is zero, max(4, runtime.NumCPU()) will be used.
// Has no effect for single connections.
Concurrency uint
// Parameters used to configure TLS connections to EdgeDB server.
TLSOptions TLSOptions
// Read the TLS certificate from this file.
// DEPRECATED, use TLSOptions.CAFile instead.
TLSCAFile string
// Specifies how strict TLS validation is.
// DEPRECATED, use TLSOptions.SecurityMode instead.
TLSSecurity string
// ServerSettings is currently unused.
ServerSettings map[string][]byte
}
RetryBackoff returns the duration to wait after the nth attempt before making the next attempt when retrying a transaction.
type RetryBackoff func(n int) time.Duration
RetryCondition represents scenarios that can caused a transaction run in Tx() methods to be retried.
type RetryCondition int
RetryOptions configures how Tx() retries failed transactions. Use NewRetryOptions to get a default RetryOptions value instead of creating one yourself.
type RetryOptions struct {
// contains filtered or unexported fields
}
func (o RetryOptions) WithCondition(
condition RetryCondition,
rule RetryRule,
) RetryOptions
WithCondition sets the retry rule for the specified condition.
func (o RetryOptions) WithDefault(rule RetryRule) RetryOptions
WithDefault sets the rule for all conditions to rule.
RetryRule determines how transactions should be retried when run in Tx() methods. See Client.Tx() for details.
type RetryRule struct {
// contains filtered or unexported fields
}
func NewRetryRule() RetryRule
NewRetryRule returns the default RetryRule value.
func (r RetryRule) WithAttempts(attempts int) RetryRule
WithAttempts sets the rule’s attempts. attempts must be greater than zero.
func (r RetryRule) WithBackoff(fn RetryBackoff) RetryRule
WithBackoff returns a copy of the RetryRule with backoff set to fn.
TLSOptions contains the parameters needed to configure TLS on EdgeDB server connections.
type TLSOptions struct {
// PEM-encoded CA certificate
CA []byte
// Path to a PEM-encoded CA certificate file
CAFile string
// Determines how strict we are with TLS checks
SecurityMode TLSSecurityMode
}
TLSSecurityMode specifies how strict TLS validation is.
type TLSSecurityMode string
const (
// TLSModeDefault makes security mode inferred from other options
TLSModeDefault TLSSecurityMode = "default"
// TLSModeInsecure results in no certificate verification whatsoever
TLSModeInsecure TLSSecurityMode = "insecure"
// TLSModeNoHostVerification enables certificate verification
// against CAs, but hostname matching is not performed.
TLSModeNoHostVerification TLSSecurityMode = "no_host_verification"
// TLSModeStrict enables full certificate and hostname verification.
TLSModeStrict TLSSecurityMode = "strict"
)
Tx is a transaction. Use Client.Tx() to get a transaction.
type Tx struct {
// contains filtered or unexported fields
}
func (t *Tx) Execute(
ctx context.Context,
cmd string,
args ...interface{},
) error
Execute an EdgeQL command (or commands).
func (t *Tx) Query(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
Query runs a query and returns the results.
func (t *Tx) QueryJSON(
ctx context.Context,
cmd string,
out *[]byte,
args ...interface{},
) error
QueryJSON runs a query and return the results as JSON.
func (t *Tx) QuerySingle(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
QuerySingle runs a singleton-returning query and returns its element. If the query executes successfully but doesn’t return a result a NoDataError is returned.
func (t *Tx) QuerySingleJSON(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
QuerySingleJSON runs a singleton-returning query. If the query executes successfully but doesn’t have a result a NoDataError is returned.
TxBlock is work to be done in a transaction.
type TxBlock func(context.Context, *Tx) error
TxOptions configures how transactions behave.
type TxOptions struct {
// contains filtered or unexported fields
}
func NewTxOptions() TxOptions
NewTxOptions returns the default TxOptions value.
func (o TxOptions) WithDeferrable(d bool) TxOptions
WithDeferrable returns a shallow copy of the client with the transaction deferrable mode set to d.
func (o TxOptions) WithIsolation(i IsolationLevel) TxOptions
WithIsolation returns a copy of the TxOptions with the isolation level set to i.
func (o TxOptions) WithReadOnly(r bool) TxOptions
WithReadOnly returns a shallow copy of the client with the transaction read only access mode set to r.