12 lines
355 B
TypeScript
12 lines
355 B
TypeScript
import { registerEnumType } from '@nestjs/graphql';
|
|
|
|
export enum TransactionIsolationLevel {
|
|
ReadUncommitted = "ReadUncommitted",
|
|
ReadCommitted = "ReadCommitted",
|
|
RepeatableRead = "RepeatableRead",
|
|
Serializable = "Serializable"
|
|
}
|
|
|
|
|
|
registerEnumType(TransactionIsolationLevel, { name: 'TransactionIsolationLevel', description: undefined })
|