Fauna .NET Driver 0.1.0-beta
 
Loading...
Searching...
No Matches
Public Member Functions | List of all members
Fauna.BaseClient Class Referenceabstract

The base class for Client and DataContext. More...

Inheritance diagram for Fauna.BaseClient:
Fauna.IClient Fauna.Client Fauna.DataContext

Public Member Functions

Task< QuerySuccess< T > > QueryAsync< T > (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.
 
Task< QuerySuccess< object?> > QueryAsync (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously executes a specified FQL query against the Fauna database.
 
Task< QuerySuccess< T > > QueryAsync< T > (Query query, IDeserializer< T > deserializer, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.
 
Task< QuerySuccess< object?> > QueryAsync (Query query, IDeserializer deserializer, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.
 
IAsyncEnumerable< Page< T > > PaginateAsync< T > (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
 
IAsyncEnumerable< Page< T > > PaginateAsync< T > (Page< T > page, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
 
IAsyncEnumerable< Page< object?> > PaginateAsync (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
 
IAsyncEnumerable< Page< object?> > PaginateAsync (Page< object?> page, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
 
IAsyncEnumerable< Page< T > > PaginateAsync< T > (Query query, IDeserializer< T > elemDeserializer, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
 
IAsyncEnumerable< Page< T > > PaginateAsync< T > (Page< T > page, IDeserializer< T > elemDeserializer, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
 
IAsyncEnumerable< Page< object?> > PaginateAsync (Query query, IDeserializer elemDeserializer, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
 
IAsyncEnumerable< Page< object?> > PaginateAsync (Page< object?> page, IDeserializer elemDeserializer, QueryOptions? queryOptions=null, CancellationToken cancel=default)
 Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
 

Detailed Description

The base class for Client and DataContext.

Definition at line 344 of file IClient.cs.

Member Function Documentation

◆ PaginateAsync() [1/4]

IAsyncEnumerable< Page< object?> > Fauna.BaseClient.PaginateAsync ( Page< object?>  page,
IDeserializer  elemDeserializer,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.

Parameters
pageThe FQL query object representing the query to be executed against the Fauna database.
elemDeserializerA data deserializer for the page element type.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
A Task representing the asynchronous operation, which upon completion contains the result of the query execution.

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

Definition at line 444 of file IClient.cs.

◆ PaginateAsync() [2/4]

IAsyncEnumerable< Page< object?> > Fauna.BaseClient.PaginateAsync ( Page< object?>  page,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.

Parameters
pageThe initial page.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
An asynchronous enumerable of pages, each containing a list of items.

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

◆ PaginateAsync() [3/4]

IAsyncEnumerable< Page< object?> > Fauna.BaseClient.PaginateAsync ( Query  query,
IDeserializer  elemDeserializer,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.

Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
elemDeserializerA data deserializer for the page element type.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
A Task representing the asynchronous operation, which upon completion contains the result of the query execution.

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

Definition at line 433 of file IClient.cs.

◆ PaginateAsync() [4/4]

IAsyncEnumerable< Page< object?> > Fauna.BaseClient.PaginateAsync ( Query  query,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.

Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
An asynchronous enumerable of pages, each containing a list of items.

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

◆ PaginateAsync< T >() [1/4]

IAsyncEnumerable< Page< T > > Fauna.BaseClient.PaginateAsync< T > ( Page< T >  page,
IDeserializer< T >  elemDeserializer,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.

Template Parameters
TThe type of the data expected in each page.
Parameters
pageThe initial page.
elemDeserializerA data deserializer for the page element type.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
An asynchronous enumerable of pages, each containing a list of items of type T .

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

Definition at line 423 of file IClient.cs.

◆ PaginateAsync< T >() [2/4]

IAsyncEnumerable< Page< T > > Fauna.BaseClient.PaginateAsync< T > ( Page< T >  page,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.

Template Parameters
TThe type of the data expected in each page.
Parameters
pageThe initial page.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
An asynchronous enumerable of pages, each containing a list of items of type T .

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

Type Constraints
T :notnull 
T :PaginateAsync 
T :page 
T :Deserializer.Generate<T> 
T :MappingCtx 
T :queryOptions 
T :cancel 

◆ PaginateAsync< T >() [3/4]

IAsyncEnumerable< Page< T > > Fauna.BaseClient.PaginateAsync< T > ( Query  query,
IDeserializer< T >  elemDeserializer,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.

Template Parameters
TThe type of the data expected in each page.
Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
elemDeserializerA data deserializer for the page element type.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
An asynchronous enumerable of pages, each containing a list of items of type T .

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

Definition at line 413 of file IClient.cs.

◆ PaginateAsync< T >() [4/4]

IAsyncEnumerable< Page< T > > Fauna.BaseClient.PaginateAsync< T > ( Query  query,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.

Template Parameters
TThe type of the data expected in each page.
Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
An asynchronous enumerable of pages, each containing a list of items of type T .

This method handles pagination by sending multiple requests to Fauna as needed, based on the presence of an 'after' cursor in the query results.

Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

Type Constraints
T :notnull 
T :PaginateAsync 
T :query 
T :Deserializer.Generate<T> 
T :MappingCtx 
T :queryOptions 
T :cancel 

◆ QueryAsync() [1/2]

Task< QuerySuccess< object?> > Fauna.BaseClient.QueryAsync ( Query  query,
IDeserializer  deserializer,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.

Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
deserializerA deserializer for the success data type.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation toke to use.
Returns
A Task representing the asynchronous operation, which upon completion contains the result of the query execution.
Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

◆ QueryAsync() [2/2]

Task< QuerySuccess< object?> > Fauna.BaseClient.QueryAsync ( Query  query,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously executes a specified FQL query against the Fauna database.

Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
A Task representing the asynchronous operation, which upon completion contains the result of the query execution.
Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

◆ QueryAsync< T >() [1/2]

Task< QuerySuccess< T > > Fauna.BaseClient.QueryAsync< T > ( Query  query,
IDeserializer< T >  deserializer,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.

Template Parameters
TThe type of the result expected from the query, corresponding to the structure of the FQL query's expected response.
Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
deserializerA deserializer for the success data type.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use.
Returns
A Task representing the asynchronous operation, which upon completion contains the result of the query execution as QuerySuccess<T>.
Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

◆ QueryAsync< T >() [2/2]

Task< QuerySuccess< T > > Fauna.BaseClient.QueryAsync< T > ( Query  query,
QueryOptions queryOptions = null,
CancellationToken  cancel = default 
)

Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.

Template Parameters
TThe type of the result expected from the query, corresponding to the structure of the FQL query's expected response.
Parameters
queryThe FQL query object representing the query to be executed against the Fauna database.
queryOptionsOptional parameters to customize the query execution, such as timeout settings and custom headers.
cancelA cancellation token to use
Returns
A Task representing the asynchronous operation, which upon completion contains the result of the query execution as QuerySuccess<T>.
Exceptions
UnauthorizedExceptionThrown when authentication fails due to invalid credentials or other authentication issues.
ForbiddenExceptionThrown when the client lacks sufficient permissions to execute the query.
QueryCheckExceptionThrown when the query has syntax errors or is otherwise malformed.
QueryRuntimeExceptionThrown when runtime errors occur during query execution, such as invalid arguments or operational failures.
AbortExceptionThrown when the FQL abort function is called within the query, containing the data provided during the abort operation.
InvalidRequestExceptionThrown for improperly formatted requests or requests that Fauna cannot process.
ContendedTransactionExceptionThrown when a transaction is aborted due to concurrent modification or contention issues.
ThrottlingExceptionThrown when the query exceeds established rate limits for the Fauna service.
QueryTimeoutExceptionThrown when the query execution time exceeds the specified or default timeout period.
ServiceExceptionThrown in response to internal Fauna service errors, indicating issues on the server side.
FaunaExceptionThrown for unexpected or miscellaneous errors not covered by the other specific exception types.

Implements Fauna.IClient.

Type Constraints
T :notnull 
T :QueryAsync<T> 
T :query 
T :Deserializer.Generate<T> 
T :MappingCtx 
T :queryOptions 
T :cancel 

The documentation for this class was generated from the following file: