API
type Client
Client is a connection pool and is safe for concurrent use.
type Client struct {
// contains filtered or unexported fields
}
function CreateClient
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.
function CreateClientDSN
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.
method Close
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.
method EnsureConnected
func (p *Client) EnsureConnected(ctx context.Context) error
EnsureConnected forces the client to connect if it hasn’t already.
method Execute
func (p *Client) Execute(ctx context.Context, cmd string) error
Execute an EdgeQL command (or commands).
method Query
func (p *Client) Query(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
Query runs a query and returns the results.
method QueryJSON
func (p *Client) QueryJSON(
ctx context.Context,
cmd string,
out *[]byte,
args ...interface{},
) error
QueryJSON runs a query and return the results as JSON.
method QuerySingle
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.
method QuerySingleJSON
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.
method Tx
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.
method WithRetryOptions
func (p Client) WithRetryOptions(
opts RetryOptions,
) *Client
WithRetryOptions returns a shallow copy of the client with the RetryOptions set to opts.
method WithTxOptions
func (p Client) WithTxOptions(opts TxOptions) *Client
WithTxOptions returns a shallow copy of the client with the TxOptions set to opts.
type Error
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
}
type ErrorCategory
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"
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"
QueryTimeoutError ErrorCategory = "errors::QueryTimeoutError"
ExecutionError ErrorCategory = "errors::ExecutionError"
InvalidValueError ErrorCategory = "errors::InvalidValueError"
DivisionByZeroError ErrorCategory = "errors::DivisionByZeroError"
NumericOutOfRangeError ErrorCategory = "errors::NumericOutOfRangeError"
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"
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"
)
type ErrorTag
ErrorTag is the argument type to Error.HasTag().
type ErrorTag string
const (
ShouldRetry ErrorTag = "SHOULD_RETRY"
ShouldReconnect ErrorTag = "SHOULD_RECONNECT"
)
type IsolationLevel
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"
RepeatableRead IsolationLevel = "repeatable_read"
)
type Options
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
}
type RetryBackoff
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
type RetryCondition
RetryCondition represents scenarios that can caused a transaction run in Tx() methods to be retried.
type RetryCondition int
type RetryOptions
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
}
method WithCondition
func (o RetryOptions) WithCondition(
condition RetryCondition,
rule RetryRule,
) RetryOptions
WithCondition sets the retry rule for the specified condition.
method WithDefault
func (o RetryOptions) WithDefault(rule RetryRule) RetryOptions
WithDefault sets the rule for all conditions to rule.
type RetryRule
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
}
function NewRetryRule
func NewRetryRule() RetryRule
NewRetryRule returns the default RetryRule value.
method WithAttempts
func (r RetryRule) WithAttempts(attempts int) RetryRule
WithAttempts sets the rule’s attempts. attempts must be greater than zero.
method WithBackoff
func (r RetryRule) WithBackoff(fn RetryBackoff) RetryRule
WithBackoff returns a copy of the RetryRule with backoff set to fn.
type Subtx
Subtx is a subtransaction.
type Subtx struct {
// contains filtered or unexported fields
}
method Execute
func (t *Subtx) Execute(ctx context.Context, cmd string) error
Execute an EdgeQL command (or commands).
method Query
func (t *Subtx) Query(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
Query runs a query and returns the results.
method QueryJSON
func (t *Subtx) QueryJSON(
ctx context.Context,
cmd string,
out *[]byte,
args ...interface{},
) error
QueryJSON runs a query and return the results as JSON.
method QuerySingle
func (t *Subtx) 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.
method QuerySingleJSON
func (t *Subtx) 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.
method Subtx
func (t *Subtx) Subtx(ctx context.Context, action SubtxBlock) error
Subtx runs an action in a savepoint. If the action returns an error the savepoint is rolled back, otherwise it is released.
type SubtxBlock
SubtxBlock is work to be done in a subtransaction.
type SubtxBlock func(context.Context, *Subtx) error
type TLSOptions
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
}
type 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"
)
type Tx
Tx is a transaction. Use Client.Tx() to get a transaction.
type Tx struct {
// contains filtered or unexported fields
}
method Execute
func (t *Tx) Execute(ctx context.Context, cmd string) error
Execute an EdgeQL command (or commands).
method Query
func (t *Tx) Query(
ctx context.Context,
cmd string,
out interface{},
args ...interface{},
) error
Query runs a query and returns the results.
method QueryJSON
func (t *Tx) QueryJSON(
ctx context.Context,
cmd string,
out *[]byte,
args ...interface{},
) error
QueryJSON runs a query and return the results as JSON.
method QuerySingle
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.
method QuerySingleJSON
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.
method Subtx
func (t *Tx) Subtx(ctx context.Context, action SubtxBlock) error
Subtx runs an action in a savepoint. If the action returns an error the savepoint is rolled back, otherwise it is released.
type TxBlock
TxBlock is work to be done in a transaction.
type TxBlock func(context.Context, *Tx) error
type TxOptions
TxOptions configures how transactions behave.
type TxOptions struct {
// contains filtered or unexported fields
}
function NewTxOptions
func NewTxOptions() TxOptions
NewTxOptions returns the default TxOptions value.
method WithDeferrable
func (o TxOptions) WithDeferrable(d bool) TxOptions
WithDeferrable returns a shallow copy of the client with the transaction deferrable mode set to d.
method WithIsolation
func (o TxOptions) WithIsolation(i IsolationLevel) TxOptions
WithIsolation returns a copy of the TxOptions with the isolation level set to i.
method WithReadOnly
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.