# Packages
No description provided by the author
# Functions
CheckUniqueConstraint returns on a unique constraint error or violation with error info Ideally this will be replaced with Prisma-generated errors in the future.
IsErrNotFound is true if the error is a ErrNotFound, which gets returned when a database record does not exist This can happen when you call `FindUnique` on a record, or update or delete a single record which doesn't exist.
# Constants
No description provided by the author
# Variables
ErrNotFound gets returned when a database record does not exist.
# Structs
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author
# Type aliases
BigInt is a type alias for int64.
Bytes is a type alias for []byte.
DateTime is a type alias for time.Time.
Decimal points to github.com/shopspring/decimal.Decimal, as Go does not have a native decimal type.
JSON is a new type which implements the correct internal prisma (un)marshaller.