FetchMode
is an enum like class and has two values:
type TFetchMode = 'lazy' | 'eager';
class FetchMode {
static LAZY: TFetchMode = 'lazy'
static EAGER: TFetchMode = 'eager'
}
FetchMode
is an enum like class and has two values:
type TFetchMode = 'lazy' | 'eager';
class FetchMode {
static LAZY: TFetchMode = 'lazy'
static EAGER: TFetchMode = 'eager'
}