Type Alias UserDefaultArgs<ExtArgs>

UserDefaultArgs<ExtArgs>: {
    include?: UserInclude<ExtArgs> | null;
    omit?: UserOmit<ExtArgs> | null;
    select?: UserSelect<ExtArgs> | null;
}

User without action

Type Parameters

Type declaration

  • Optionalinclude?: UserInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

  • Optionalomit?: UserOmit<ExtArgs> | null

    Omit specific fields from the User

  • Optionalselect?: UserSelect<ExtArgs> | null

    Select specific fields to fetch from the User