Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 281 Bytes

FetchMode.md

File metadata and controls

16 lines (11 loc) · 281 Bytes

NgRestModel Documentation

Back to the index

FetchMode

FetchMode is an enum like class and has two values:

type TFetchMode = 'lazy' | 'eager';

class FetchMode {
    static LAZY: TFetchMode = 'lazy'
    static EAGER: TFetchMode = 'eager'
}