ModelTypesSSRRequest<Model, FlatModel>: IndexQueryMethods<Model, "REQUEST"> & Omit<{
    create<SelectionSet>(contextSpec, model, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    delete<SelectionSet>(contextSpec, identifier, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    get<SelectionSet>(contextSpec, identifier, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    list<SelectionSet>(contextSpec, options?): ListReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    update<SelectionSet>(contextSpec, model, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
}, keyof Model["__meta"]["disabledOperations"]>

Type Parameters