1159 lines
43 KiB
TypeScript
1159 lines
43 KiB
TypeScript
|
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
/* eslint-disable */
|
|
// biome-ignore-all lint: generated file
|
|
// @ts-nocheck
|
|
/*
|
|
* This file exports the `intranet_doc_reply` model and its related types.
|
|
*
|
|
* 🟢 You can import this file directly.
|
|
*/
|
|
import type * as runtime from "@prisma/client/runtime/client"
|
|
import type * as $Enums from "../enums"
|
|
import type * as Prisma from "../internal/prismaNamespace"
|
|
|
|
/**
|
|
* Model intranet_doc_reply
|
|
*
|
|
*/
|
|
export type intranet_doc_replyModel = runtime.Types.Result.DefaultSelection<Prisma.$intranet_doc_replyPayload>
|
|
|
|
export type AggregateIntranet_doc_reply = {
|
|
_count: Intranet_doc_replyCountAggregateOutputType | null
|
|
_avg: Intranet_doc_replyAvgAggregateOutputType | null
|
|
_sum: Intranet_doc_replySumAggregateOutputType | null
|
|
_min: Intranet_doc_replyMinAggregateOutputType | null
|
|
_max: Intranet_doc_replyMaxAggregateOutputType | null
|
|
}
|
|
|
|
export type Intranet_doc_replyAvgAggregateOutputType = {
|
|
id: number | null
|
|
feed_id: number | null
|
|
date: number | null
|
|
account_id: number | null
|
|
attachment: number | null
|
|
}
|
|
|
|
export type Intranet_doc_replySumAggregateOutputType = {
|
|
id: bigint | null
|
|
feed_id: bigint | null
|
|
date: bigint | null
|
|
account_id: bigint | null
|
|
attachment: bigint | null
|
|
}
|
|
|
|
export type Intranet_doc_replyMinAggregateOutputType = {
|
|
id: bigint | null
|
|
feed_id: bigint | null
|
|
date: bigint | null
|
|
account_id: bigint | null
|
|
msg: string | null
|
|
attachment: bigint | null
|
|
update_timestamp: Date | null
|
|
}
|
|
|
|
export type Intranet_doc_replyMaxAggregateOutputType = {
|
|
id: bigint | null
|
|
feed_id: bigint | null
|
|
date: bigint | null
|
|
account_id: bigint | null
|
|
msg: string | null
|
|
attachment: bigint | null
|
|
update_timestamp: Date | null
|
|
}
|
|
|
|
export type Intranet_doc_replyCountAggregateOutputType = {
|
|
id: number
|
|
feed_id: number
|
|
date: number
|
|
account_id: number
|
|
msg: number
|
|
attachment: number
|
|
update_timestamp: number
|
|
_all: number
|
|
}
|
|
|
|
|
|
export type Intranet_doc_replyAvgAggregateInputType = {
|
|
id?: true
|
|
feed_id?: true
|
|
date?: true
|
|
account_id?: true
|
|
attachment?: true
|
|
}
|
|
|
|
export type Intranet_doc_replySumAggregateInputType = {
|
|
id?: true
|
|
feed_id?: true
|
|
date?: true
|
|
account_id?: true
|
|
attachment?: true
|
|
}
|
|
|
|
export type Intranet_doc_replyMinAggregateInputType = {
|
|
id?: true
|
|
feed_id?: true
|
|
date?: true
|
|
account_id?: true
|
|
msg?: true
|
|
attachment?: true
|
|
update_timestamp?: true
|
|
}
|
|
|
|
export type Intranet_doc_replyMaxAggregateInputType = {
|
|
id?: true
|
|
feed_id?: true
|
|
date?: true
|
|
account_id?: true
|
|
msg?: true
|
|
attachment?: true
|
|
update_timestamp?: true
|
|
}
|
|
|
|
export type Intranet_doc_replyCountAggregateInputType = {
|
|
id?: true
|
|
feed_id?: true
|
|
date?: true
|
|
account_id?: true
|
|
msg?: true
|
|
attachment?: true
|
|
update_timestamp?: true
|
|
_all?: true
|
|
}
|
|
|
|
export type Intranet_doc_replyAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Filter which intranet_doc_reply to aggregate.
|
|
*/
|
|
where?: Prisma.intranet_doc_replyWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of intranet_doc_replies to fetch.
|
|
*/
|
|
orderBy?: Prisma.intranet_doc_replyOrderByWithRelationInput | Prisma.intranet_doc_replyOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the start position
|
|
*/
|
|
cursor?: Prisma.intranet_doc_replyWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` intranet_doc_replies from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` intranet_doc_replies.
|
|
*/
|
|
skip?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Count returned intranet_doc_replies
|
|
**/
|
|
_count?: true | Intranet_doc_replyCountAggregateInputType
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Select which fields to average
|
|
**/
|
|
_avg?: Intranet_doc_replyAvgAggregateInputType
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Select which fields to sum
|
|
**/
|
|
_sum?: Intranet_doc_replySumAggregateInputType
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Select which fields to find the minimum value
|
|
**/
|
|
_min?: Intranet_doc_replyMinAggregateInputType
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Select which fields to find the maximum value
|
|
**/
|
|
_max?: Intranet_doc_replyMaxAggregateInputType
|
|
}
|
|
|
|
export type GetIntranet_doc_replyAggregateType<T extends Intranet_doc_replyAggregateArgs> = {
|
|
[P in keyof T & keyof AggregateIntranet_doc_reply]: P extends '_count' | 'count'
|
|
? T[P] extends true
|
|
? number
|
|
: Prisma.GetScalarType<T[P], AggregateIntranet_doc_reply[P]>
|
|
: Prisma.GetScalarType<T[P], AggregateIntranet_doc_reply[P]>
|
|
}
|
|
|
|
|
|
|
|
|
|
export type intranet_doc_replyGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
where?: Prisma.intranet_doc_replyWhereInput
|
|
orderBy?: Prisma.intranet_doc_replyOrderByWithAggregationInput | Prisma.intranet_doc_replyOrderByWithAggregationInput[]
|
|
by: Prisma.Intranet_doc_replyScalarFieldEnum[] | Prisma.Intranet_doc_replyScalarFieldEnum
|
|
having?: Prisma.intranet_doc_replyScalarWhereWithAggregatesInput
|
|
take?: number
|
|
skip?: number
|
|
_count?: Intranet_doc_replyCountAggregateInputType | true
|
|
_avg?: Intranet_doc_replyAvgAggregateInputType
|
|
_sum?: Intranet_doc_replySumAggregateInputType
|
|
_min?: Intranet_doc_replyMinAggregateInputType
|
|
_max?: Intranet_doc_replyMaxAggregateInputType
|
|
}
|
|
|
|
export type Intranet_doc_replyGroupByOutputType = {
|
|
id: bigint
|
|
feed_id: bigint
|
|
date: bigint
|
|
account_id: bigint
|
|
msg: string
|
|
attachment: bigint
|
|
update_timestamp: Date
|
|
_count: Intranet_doc_replyCountAggregateOutputType | null
|
|
_avg: Intranet_doc_replyAvgAggregateOutputType | null
|
|
_sum: Intranet_doc_replySumAggregateOutputType | null
|
|
_min: Intranet_doc_replyMinAggregateOutputType | null
|
|
_max: Intranet_doc_replyMaxAggregateOutputType | null
|
|
}
|
|
|
|
type GetIntranet_doc_replyGroupByPayload<T extends intranet_doc_replyGroupByArgs> = Prisma.PrismaPromise<
|
|
Array<
|
|
Prisma.PickEnumerable<Intranet_doc_replyGroupByOutputType, T['by']> &
|
|
{
|
|
[P in ((keyof T) & (keyof Intranet_doc_replyGroupByOutputType))]: P extends '_count'
|
|
? T[P] extends boolean
|
|
? number
|
|
: Prisma.GetScalarType<T[P], Intranet_doc_replyGroupByOutputType[P]>
|
|
: Prisma.GetScalarType<T[P], Intranet_doc_replyGroupByOutputType[P]>
|
|
}
|
|
>
|
|
>
|
|
|
|
|
|
|
|
export type intranet_doc_replyWhereInput = {
|
|
AND?: Prisma.intranet_doc_replyWhereInput | Prisma.intranet_doc_replyWhereInput[]
|
|
OR?: Prisma.intranet_doc_replyWhereInput[]
|
|
NOT?: Prisma.intranet_doc_replyWhereInput | Prisma.intranet_doc_replyWhereInput[]
|
|
id?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
feed_id?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
date?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
account_id?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
msg?: Prisma.StringFilter<"intranet_doc_reply"> | string
|
|
attachment?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
update_timestamp?: Prisma.DateTimeFilter<"intranet_doc_reply"> | Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyOrderByWithRelationInput = {
|
|
id?: Prisma.SortOrder
|
|
feed_id?: Prisma.SortOrder
|
|
date?: Prisma.SortOrder
|
|
account_id?: Prisma.SortOrder
|
|
msg?: Prisma.SortOrder
|
|
attachment?: Prisma.SortOrder
|
|
update_timestamp?: Prisma.SortOrder
|
|
_relevance?: Prisma.intranet_doc_replyOrderByRelevanceInput
|
|
}
|
|
|
|
export type intranet_doc_replyWhereUniqueInput = Prisma.AtLeast<{
|
|
id?: bigint | number
|
|
AND?: Prisma.intranet_doc_replyWhereInput | Prisma.intranet_doc_replyWhereInput[]
|
|
OR?: Prisma.intranet_doc_replyWhereInput[]
|
|
NOT?: Prisma.intranet_doc_replyWhereInput | Prisma.intranet_doc_replyWhereInput[]
|
|
feed_id?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
date?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
account_id?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
msg?: Prisma.StringFilter<"intranet_doc_reply"> | string
|
|
attachment?: Prisma.BigIntFilter<"intranet_doc_reply"> | bigint | number
|
|
update_timestamp?: Prisma.DateTimeFilter<"intranet_doc_reply"> | Date | string
|
|
}, "id">
|
|
|
|
export type intranet_doc_replyOrderByWithAggregationInput = {
|
|
id?: Prisma.SortOrder
|
|
feed_id?: Prisma.SortOrder
|
|
date?: Prisma.SortOrder
|
|
account_id?: Prisma.SortOrder
|
|
msg?: Prisma.SortOrder
|
|
attachment?: Prisma.SortOrder
|
|
update_timestamp?: Prisma.SortOrder
|
|
_count?: Prisma.intranet_doc_replyCountOrderByAggregateInput
|
|
_avg?: Prisma.intranet_doc_replyAvgOrderByAggregateInput
|
|
_max?: Prisma.intranet_doc_replyMaxOrderByAggregateInput
|
|
_min?: Prisma.intranet_doc_replyMinOrderByAggregateInput
|
|
_sum?: Prisma.intranet_doc_replySumOrderByAggregateInput
|
|
}
|
|
|
|
export type intranet_doc_replyScalarWhereWithAggregatesInput = {
|
|
AND?: Prisma.intranet_doc_replyScalarWhereWithAggregatesInput | Prisma.intranet_doc_replyScalarWhereWithAggregatesInput[]
|
|
OR?: Prisma.intranet_doc_replyScalarWhereWithAggregatesInput[]
|
|
NOT?: Prisma.intranet_doc_replyScalarWhereWithAggregatesInput | Prisma.intranet_doc_replyScalarWhereWithAggregatesInput[]
|
|
id?: Prisma.BigIntWithAggregatesFilter<"intranet_doc_reply"> | bigint | number
|
|
feed_id?: Prisma.BigIntWithAggregatesFilter<"intranet_doc_reply"> | bigint | number
|
|
date?: Prisma.BigIntWithAggregatesFilter<"intranet_doc_reply"> | bigint | number
|
|
account_id?: Prisma.BigIntWithAggregatesFilter<"intranet_doc_reply"> | bigint | number
|
|
msg?: Prisma.StringWithAggregatesFilter<"intranet_doc_reply"> | string
|
|
attachment?: Prisma.BigIntWithAggregatesFilter<"intranet_doc_reply"> | bigint | number
|
|
update_timestamp?: Prisma.DateTimeWithAggregatesFilter<"intranet_doc_reply"> | Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyCreateInput = {
|
|
id?: bigint | number
|
|
feed_id: bigint | number
|
|
date: bigint | number
|
|
account_id: bigint | number
|
|
msg: string
|
|
attachment?: bigint | number
|
|
update_timestamp?: Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyUncheckedCreateInput = {
|
|
id?: bigint | number
|
|
feed_id: bigint | number
|
|
date: bigint | number
|
|
account_id: bigint | number
|
|
msg: string
|
|
attachment?: bigint | number
|
|
update_timestamp?: Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyUpdateInput = {
|
|
id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
feed_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
account_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
msg?: Prisma.StringFieldUpdateOperationsInput | string
|
|
attachment?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
update_timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyUncheckedUpdateInput = {
|
|
id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
feed_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
account_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
msg?: Prisma.StringFieldUpdateOperationsInput | string
|
|
attachment?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
update_timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyCreateManyInput = {
|
|
id?: bigint | number
|
|
feed_id: bigint | number
|
|
date: bigint | number
|
|
account_id: bigint | number
|
|
msg: string
|
|
attachment?: bigint | number
|
|
update_timestamp?: Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyUpdateManyMutationInput = {
|
|
id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
feed_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
account_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
msg?: Prisma.StringFieldUpdateOperationsInput | string
|
|
attachment?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
update_timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyUncheckedUpdateManyInput = {
|
|
id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
feed_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
account_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
msg?: Prisma.StringFieldUpdateOperationsInput | string
|
|
attachment?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
|
|
update_timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
}
|
|
|
|
export type intranet_doc_replyOrderByRelevanceInput = {
|
|
fields: Prisma.intranet_doc_replyOrderByRelevanceFieldEnum | Prisma.intranet_doc_replyOrderByRelevanceFieldEnum[]
|
|
sort: Prisma.SortOrder
|
|
search: string
|
|
}
|
|
|
|
export type intranet_doc_replyCountOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
feed_id?: Prisma.SortOrder
|
|
date?: Prisma.SortOrder
|
|
account_id?: Prisma.SortOrder
|
|
msg?: Prisma.SortOrder
|
|
attachment?: Prisma.SortOrder
|
|
update_timestamp?: Prisma.SortOrder
|
|
}
|
|
|
|
export type intranet_doc_replyAvgOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
feed_id?: Prisma.SortOrder
|
|
date?: Prisma.SortOrder
|
|
account_id?: Prisma.SortOrder
|
|
attachment?: Prisma.SortOrder
|
|
}
|
|
|
|
export type intranet_doc_replyMaxOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
feed_id?: Prisma.SortOrder
|
|
date?: Prisma.SortOrder
|
|
account_id?: Prisma.SortOrder
|
|
msg?: Prisma.SortOrder
|
|
attachment?: Prisma.SortOrder
|
|
update_timestamp?: Prisma.SortOrder
|
|
}
|
|
|
|
export type intranet_doc_replyMinOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
feed_id?: Prisma.SortOrder
|
|
date?: Prisma.SortOrder
|
|
account_id?: Prisma.SortOrder
|
|
msg?: Prisma.SortOrder
|
|
attachment?: Prisma.SortOrder
|
|
update_timestamp?: Prisma.SortOrder
|
|
}
|
|
|
|
export type intranet_doc_replySumOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
feed_id?: Prisma.SortOrder
|
|
date?: Prisma.SortOrder
|
|
account_id?: Prisma.SortOrder
|
|
attachment?: Prisma.SortOrder
|
|
}
|
|
|
|
|
|
|
|
export type intranet_doc_replySelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
id?: boolean
|
|
feed_id?: boolean
|
|
date?: boolean
|
|
account_id?: boolean
|
|
msg?: boolean
|
|
attachment?: boolean
|
|
update_timestamp?: boolean
|
|
}, ExtArgs["result"]["intranet_doc_reply"]>
|
|
|
|
|
|
|
|
export type intranet_doc_replySelectScalar = {
|
|
id?: boolean
|
|
feed_id?: boolean
|
|
date?: boolean
|
|
account_id?: boolean
|
|
msg?: boolean
|
|
attachment?: boolean
|
|
update_timestamp?: boolean
|
|
}
|
|
|
|
export type intranet_doc_replyOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "feed_id" | "date" | "account_id" | "msg" | "attachment" | "update_timestamp", ExtArgs["result"]["intranet_doc_reply"]>
|
|
|
|
export type $intranet_doc_replyPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
name: "intranet_doc_reply"
|
|
objects: {}
|
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
id: bigint
|
|
feed_id: bigint
|
|
date: bigint
|
|
account_id: bigint
|
|
msg: string
|
|
attachment: bigint
|
|
update_timestamp: Date
|
|
}, ExtArgs["result"]["intranet_doc_reply"]>
|
|
composites: {}
|
|
}
|
|
|
|
export type intranet_doc_replyGetPayload<S extends boolean | null | undefined | intranet_doc_replyDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload, S>
|
|
|
|
export type intranet_doc_replyCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
|
|
Omit<intranet_doc_replyFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
select?: Intranet_doc_replyCountAggregateInputType | true
|
|
}
|
|
|
|
export interface intranet_doc_replyDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['intranet_doc_reply'], meta: { name: 'intranet_doc_reply' } }
|
|
/**
|
|
* Find zero or one Intranet_doc_reply that matches the filter.
|
|
* @param {intranet_doc_replyFindUniqueArgs} args - Arguments to find a Intranet_doc_reply
|
|
* @example
|
|
* // Get one Intranet_doc_reply
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.findUnique({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findUnique<T extends intranet_doc_replyFindUniqueArgs>(args: Prisma.SelectSubset<T, intranet_doc_replyFindUniqueArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find one Intranet_doc_reply that matches the filter or throw an error with `error.code='P2025'`
|
|
* if no matches were found.
|
|
* @param {intranet_doc_replyFindUniqueOrThrowArgs} args - Arguments to find a Intranet_doc_reply
|
|
* @example
|
|
* // Get one Intranet_doc_reply
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.findUniqueOrThrow({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findUniqueOrThrow<T extends intranet_doc_replyFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, intranet_doc_replyFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find the first Intranet_doc_reply that matches the filter.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {intranet_doc_replyFindFirstArgs} args - Arguments to find a Intranet_doc_reply
|
|
* @example
|
|
* // Get one Intranet_doc_reply
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.findFirst({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findFirst<T extends intranet_doc_replyFindFirstArgs>(args?: Prisma.SelectSubset<T, intranet_doc_replyFindFirstArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find the first Intranet_doc_reply that matches the filter or
|
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {intranet_doc_replyFindFirstOrThrowArgs} args - Arguments to find a Intranet_doc_reply
|
|
* @example
|
|
* // Get one Intranet_doc_reply
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.findFirstOrThrow({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findFirstOrThrow<T extends intranet_doc_replyFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, intranet_doc_replyFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find zero or more Intranet_doc_replies that matches the filter.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {intranet_doc_replyFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
* @example
|
|
* // Get all Intranet_doc_replies
|
|
* const intranet_doc_replies = await prisma.intranet_doc_reply.findMany()
|
|
*
|
|
* // Get first 10 Intranet_doc_replies
|
|
* const intranet_doc_replies = await prisma.intranet_doc_reply.findMany({ take: 10 })
|
|
*
|
|
* // Only select the `id`
|
|
* const intranet_doc_replyWithIdOnly = await prisma.intranet_doc_reply.findMany({ select: { id: true } })
|
|
*
|
|
*/
|
|
findMany<T extends intranet_doc_replyFindManyArgs>(args?: Prisma.SelectSubset<T, intranet_doc_replyFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
|
|
/**
|
|
* Create a Intranet_doc_reply.
|
|
* @param {intranet_doc_replyCreateArgs} args - Arguments to create a Intranet_doc_reply.
|
|
* @example
|
|
* // Create one Intranet_doc_reply
|
|
* const Intranet_doc_reply = await prisma.intranet_doc_reply.create({
|
|
* data: {
|
|
* // ... data to create a Intranet_doc_reply
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
create<T extends intranet_doc_replyCreateArgs>(args: Prisma.SelectSubset<T, intranet_doc_replyCreateArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Create many Intranet_doc_replies.
|
|
* @param {intranet_doc_replyCreateManyArgs} args - Arguments to create many Intranet_doc_replies.
|
|
* @example
|
|
* // Create many Intranet_doc_replies
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.createMany({
|
|
* data: [
|
|
* // ... provide data here
|
|
* ]
|
|
* })
|
|
*
|
|
*/
|
|
createMany<T extends intranet_doc_replyCreateManyArgs>(args?: Prisma.SelectSubset<T, intranet_doc_replyCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
|
|
/**
|
|
* Delete a Intranet_doc_reply.
|
|
* @param {intranet_doc_replyDeleteArgs} args - Arguments to delete one Intranet_doc_reply.
|
|
* @example
|
|
* // Delete one Intranet_doc_reply
|
|
* const Intranet_doc_reply = await prisma.intranet_doc_reply.delete({
|
|
* where: {
|
|
* // ... filter to delete one Intranet_doc_reply
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
delete<T extends intranet_doc_replyDeleteArgs>(args: Prisma.SelectSubset<T, intranet_doc_replyDeleteArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Update one Intranet_doc_reply.
|
|
* @param {intranet_doc_replyUpdateArgs} args - Arguments to update one Intranet_doc_reply.
|
|
* @example
|
|
* // Update one Intranet_doc_reply
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.update({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* },
|
|
* data: {
|
|
* // ... provide data here
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
update<T extends intranet_doc_replyUpdateArgs>(args: Prisma.SelectSubset<T, intranet_doc_replyUpdateArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Delete zero or more Intranet_doc_replies.
|
|
* @param {intranet_doc_replyDeleteManyArgs} args - Arguments to filter Intranet_doc_replies to delete.
|
|
* @example
|
|
* // Delete a few Intranet_doc_replies
|
|
* const { count } = await prisma.intranet_doc_reply.deleteMany({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
deleteMany<T extends intranet_doc_replyDeleteManyArgs>(args?: Prisma.SelectSubset<T, intranet_doc_replyDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
|
|
/**
|
|
* Update zero or more Intranet_doc_replies.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {intranet_doc_replyUpdateManyArgs} args - Arguments to update one or more rows.
|
|
* @example
|
|
* // Update many Intranet_doc_replies
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.updateMany({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* },
|
|
* data: {
|
|
* // ... provide data here
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
updateMany<T extends intranet_doc_replyUpdateManyArgs>(args: Prisma.SelectSubset<T, intranet_doc_replyUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
|
|
/**
|
|
* Create or update one Intranet_doc_reply.
|
|
* @param {intranet_doc_replyUpsertArgs} args - Arguments to update or create a Intranet_doc_reply.
|
|
* @example
|
|
* // Update or create a Intranet_doc_reply
|
|
* const intranet_doc_reply = await prisma.intranet_doc_reply.upsert({
|
|
* create: {
|
|
* // ... data to create a Intranet_doc_reply
|
|
* },
|
|
* update: {
|
|
* // ... in case it already exists, update
|
|
* },
|
|
* where: {
|
|
* // ... the filter for the Intranet_doc_reply we want to update
|
|
* }
|
|
* })
|
|
*/
|
|
upsert<T extends intranet_doc_replyUpsertArgs>(args: Prisma.SelectSubset<T, intranet_doc_replyUpsertArgs<ExtArgs>>): Prisma.Prisma__intranet_doc_replyClient<runtime.Types.Result.GetResult<Prisma.$intranet_doc_replyPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
|
|
/**
|
|
* Count the number of Intranet_doc_replies.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {intranet_doc_replyCountArgs} args - Arguments to filter Intranet_doc_replies to count.
|
|
* @example
|
|
* // Count the number of Intranet_doc_replies
|
|
* const count = await prisma.intranet_doc_reply.count({
|
|
* where: {
|
|
* // ... the filter for the Intranet_doc_replies we want to count
|
|
* }
|
|
* })
|
|
**/
|
|
count<T extends intranet_doc_replyCountArgs>(
|
|
args?: Prisma.Subset<T, intranet_doc_replyCountArgs>,
|
|
): Prisma.PrismaPromise<
|
|
T extends runtime.Types.Utils.Record<'select', any>
|
|
? T['select'] extends true
|
|
? number
|
|
: Prisma.GetScalarType<T['select'], Intranet_doc_replyCountAggregateOutputType>
|
|
: number
|
|
>
|
|
|
|
/**
|
|
* Allows you to perform aggregations operations on a Intranet_doc_reply.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {Intranet_doc_replyAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
* @example
|
|
* // Ordered by age ascending
|
|
* // Where email contains prisma.io
|
|
* // Limited to the 10 users
|
|
* const aggregations = await prisma.user.aggregate({
|
|
* _avg: {
|
|
* age: true,
|
|
* },
|
|
* where: {
|
|
* email: {
|
|
* contains: "prisma.io",
|
|
* },
|
|
* },
|
|
* orderBy: {
|
|
* age: "asc",
|
|
* },
|
|
* take: 10,
|
|
* })
|
|
**/
|
|
aggregate<T extends Intranet_doc_replyAggregateArgs>(args: Prisma.Subset<T, Intranet_doc_replyAggregateArgs>): Prisma.PrismaPromise<GetIntranet_doc_replyAggregateType<T>>
|
|
|
|
/**
|
|
* Group by Intranet_doc_reply.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {intranet_doc_replyGroupByArgs} args - Group by arguments.
|
|
* @example
|
|
* // Group by city, order by createdAt, get count
|
|
* const result = await prisma.user.groupBy({
|
|
* by: ['city', 'createdAt'],
|
|
* orderBy: {
|
|
* createdAt: true
|
|
* },
|
|
* _count: {
|
|
* _all: true
|
|
* },
|
|
* })
|
|
*
|
|
**/
|
|
groupBy<
|
|
T extends intranet_doc_replyGroupByArgs,
|
|
HasSelectOrTake extends Prisma.Or<
|
|
Prisma.Extends<'skip', Prisma.Keys<T>>,
|
|
Prisma.Extends<'take', Prisma.Keys<T>>
|
|
>,
|
|
OrderByArg extends Prisma.True extends HasSelectOrTake
|
|
? { orderBy: intranet_doc_replyGroupByArgs['orderBy'] }
|
|
: { orderBy?: intranet_doc_replyGroupByArgs['orderBy'] },
|
|
OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
|
|
ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
|
|
ByValid extends Prisma.Has<ByFields, OrderFields>,
|
|
HavingFields extends Prisma.GetHavingFields<T['having']>,
|
|
HavingValid extends Prisma.Has<ByFields, HavingFields>,
|
|
ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
|
|
InputErrors extends ByEmpty extends Prisma.True
|
|
? `Error: "by" must not be empty.`
|
|
: HavingValid extends Prisma.False
|
|
? {
|
|
[P in HavingFields]: P extends ByFields
|
|
? never
|
|
: P extends string
|
|
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
: [
|
|
Error,
|
|
'Field ',
|
|
P,
|
|
` in "having" needs to be provided in "by"`,
|
|
]
|
|
}[HavingFields]
|
|
: 'take' extends Prisma.Keys<T>
|
|
? 'orderBy' extends Prisma.Keys<T>
|
|
? ByValid extends Prisma.True
|
|
? {}
|
|
: {
|
|
[P in OrderFields]: P extends ByFields
|
|
? never
|
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
}[OrderFields]
|
|
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
: 'skip' extends Prisma.Keys<T>
|
|
? 'orderBy' extends Prisma.Keys<T>
|
|
? ByValid extends Prisma.True
|
|
? {}
|
|
: {
|
|
[P in OrderFields]: P extends ByFields
|
|
? never
|
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
}[OrderFields]
|
|
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
: ByValid extends Prisma.True
|
|
? {}
|
|
: {
|
|
[P in OrderFields]: P extends ByFields
|
|
? never
|
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
}[OrderFields]
|
|
>(args: Prisma.SubsetIntersection<T, intranet_doc_replyGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetIntranet_doc_replyGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
/**
|
|
* Fields of the intranet_doc_reply model
|
|
*/
|
|
readonly fields: intranet_doc_replyFieldRefs;
|
|
}
|
|
|
|
/**
|
|
* The delegate class that acts as a "Promise-like" for intranet_doc_reply.
|
|
* Why is this prefixed with `Prisma__`?
|
|
* Because we want to prevent naming conflicts as mentioned in
|
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
*/
|
|
export interface Prisma__intranet_doc_replyClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
/**
|
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
*/
|
|
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
|
|
/**
|
|
* Attaches a callback for only the rejection of the Promise.
|
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
* @returns A Promise for the completion of the callback.
|
|
*/
|
|
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
|
|
/**
|
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
* resolved value cannot be modified from the callback.
|
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
* @returns A Promise for the completion of the callback.
|
|
*/
|
|
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Fields of the intranet_doc_reply model
|
|
*/
|
|
export interface intranet_doc_replyFieldRefs {
|
|
readonly id: Prisma.FieldRef<"intranet_doc_reply", 'BigInt'>
|
|
readonly feed_id: Prisma.FieldRef<"intranet_doc_reply", 'BigInt'>
|
|
readonly date: Prisma.FieldRef<"intranet_doc_reply", 'BigInt'>
|
|
readonly account_id: Prisma.FieldRef<"intranet_doc_reply", 'BigInt'>
|
|
readonly msg: Prisma.FieldRef<"intranet_doc_reply", 'String'>
|
|
readonly attachment: Prisma.FieldRef<"intranet_doc_reply", 'BigInt'>
|
|
readonly update_timestamp: Prisma.FieldRef<"intranet_doc_reply", 'DateTime'>
|
|
}
|
|
|
|
|
|
// Custom InputTypes
|
|
/**
|
|
* intranet_doc_reply findUnique
|
|
*/
|
|
export type intranet_doc_replyFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* Filter, which intranet_doc_reply to fetch.
|
|
*/
|
|
where: Prisma.intranet_doc_replyWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply findUniqueOrThrow
|
|
*/
|
|
export type intranet_doc_replyFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* Filter, which intranet_doc_reply to fetch.
|
|
*/
|
|
where: Prisma.intranet_doc_replyWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply findFirst
|
|
*/
|
|
export type intranet_doc_replyFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* Filter, which intranet_doc_reply to fetch.
|
|
*/
|
|
where?: Prisma.intranet_doc_replyWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of intranet_doc_replies to fetch.
|
|
*/
|
|
orderBy?: Prisma.intranet_doc_replyOrderByWithRelationInput | Prisma.intranet_doc_replyOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the position for searching for intranet_doc_replies.
|
|
*/
|
|
cursor?: Prisma.intranet_doc_replyWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` intranet_doc_replies from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` intranet_doc_replies.
|
|
*/
|
|
skip?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
*
|
|
* Filter by unique combinations of intranet_doc_replies.
|
|
*/
|
|
distinct?: Prisma.Intranet_doc_replyScalarFieldEnum | Prisma.Intranet_doc_replyScalarFieldEnum[]
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply findFirstOrThrow
|
|
*/
|
|
export type intranet_doc_replyFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* Filter, which intranet_doc_reply to fetch.
|
|
*/
|
|
where?: Prisma.intranet_doc_replyWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of intranet_doc_replies to fetch.
|
|
*/
|
|
orderBy?: Prisma.intranet_doc_replyOrderByWithRelationInput | Prisma.intranet_doc_replyOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the position for searching for intranet_doc_replies.
|
|
*/
|
|
cursor?: Prisma.intranet_doc_replyWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` intranet_doc_replies from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` intranet_doc_replies.
|
|
*/
|
|
skip?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
*
|
|
* Filter by unique combinations of intranet_doc_replies.
|
|
*/
|
|
distinct?: Prisma.Intranet_doc_replyScalarFieldEnum | Prisma.Intranet_doc_replyScalarFieldEnum[]
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply findMany
|
|
*/
|
|
export type intranet_doc_replyFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* Filter, which intranet_doc_replies to fetch.
|
|
*/
|
|
where?: Prisma.intranet_doc_replyWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of intranet_doc_replies to fetch.
|
|
*/
|
|
orderBy?: Prisma.intranet_doc_replyOrderByWithRelationInput | Prisma.intranet_doc_replyOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the position for listing intranet_doc_replies.
|
|
*/
|
|
cursor?: Prisma.intranet_doc_replyWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` intranet_doc_replies from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` intranet_doc_replies.
|
|
*/
|
|
skip?: number
|
|
distinct?: Prisma.Intranet_doc_replyScalarFieldEnum | Prisma.Intranet_doc_replyScalarFieldEnum[]
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply create
|
|
*/
|
|
export type intranet_doc_replyCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* The data needed to create a intranet_doc_reply.
|
|
*/
|
|
data: Prisma.XOR<Prisma.intranet_doc_replyCreateInput, Prisma.intranet_doc_replyUncheckedCreateInput>
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply createMany
|
|
*/
|
|
export type intranet_doc_replyCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* The data used to create many intranet_doc_replies.
|
|
*/
|
|
data: Prisma.intranet_doc_replyCreateManyInput | Prisma.intranet_doc_replyCreateManyInput[]
|
|
skipDuplicates?: boolean
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply update
|
|
*/
|
|
export type intranet_doc_replyUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* The data needed to update a intranet_doc_reply.
|
|
*/
|
|
data: Prisma.XOR<Prisma.intranet_doc_replyUpdateInput, Prisma.intranet_doc_replyUncheckedUpdateInput>
|
|
/**
|
|
* Choose, which intranet_doc_reply to update.
|
|
*/
|
|
where: Prisma.intranet_doc_replyWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply updateMany
|
|
*/
|
|
export type intranet_doc_replyUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* The data used to update intranet_doc_replies.
|
|
*/
|
|
data: Prisma.XOR<Prisma.intranet_doc_replyUpdateManyMutationInput, Prisma.intranet_doc_replyUncheckedUpdateManyInput>
|
|
/**
|
|
* Filter which intranet_doc_replies to update
|
|
*/
|
|
where?: Prisma.intranet_doc_replyWhereInput
|
|
/**
|
|
* Limit how many intranet_doc_replies to update.
|
|
*/
|
|
limit?: number
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply upsert
|
|
*/
|
|
export type intranet_doc_replyUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* The filter to search for the intranet_doc_reply to update in case it exists.
|
|
*/
|
|
where: Prisma.intranet_doc_replyWhereUniqueInput
|
|
/**
|
|
* In case the intranet_doc_reply found by the `where` argument doesn't exist, create a new intranet_doc_reply with this data.
|
|
*/
|
|
create: Prisma.XOR<Prisma.intranet_doc_replyCreateInput, Prisma.intranet_doc_replyUncheckedCreateInput>
|
|
/**
|
|
* In case the intranet_doc_reply was found with the provided `where` argument, update it with this data.
|
|
*/
|
|
update: Prisma.XOR<Prisma.intranet_doc_replyUpdateInput, Prisma.intranet_doc_replyUncheckedUpdateInput>
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply delete
|
|
*/
|
|
export type intranet_doc_replyDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
/**
|
|
* Filter which intranet_doc_reply to delete.
|
|
*/
|
|
where: Prisma.intranet_doc_replyWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply deleteMany
|
|
*/
|
|
export type intranet_doc_replyDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Filter which intranet_doc_replies to delete
|
|
*/
|
|
where?: Prisma.intranet_doc_replyWhereInput
|
|
/**
|
|
* Limit how many intranet_doc_replies to delete.
|
|
*/
|
|
limit?: number
|
|
}
|
|
|
|
/**
|
|
* intranet_doc_reply without action
|
|
*/
|
|
export type intranet_doc_replyDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the intranet_doc_reply
|
|
*/
|
|
select?: Prisma.intranet_doc_replySelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the intranet_doc_reply
|
|
*/
|
|
omit?: Prisma.intranet_doc_replyOmit<ExtArgs> | null
|
|
}
|