DisBot
    Preparing search index...

    Type Alias TicketsFindManyArgs<ExtArgs>

    Tickets findMany

    type TicketsFindManyArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        cursor?: TicketsWhereUniqueInput;
        distinct?: Prisma.TicketsScalarFieldEnum | Prisma.TicketsScalarFieldEnum[];
        include?: TicketsInclude<ExtArgs> | null;
        omit?: TicketsOmit<ExtArgs> | null;
        orderBy?:
            | TicketsOrderByWithRelationInput
            | TicketsOrderByWithRelationInput[];
        select?: TicketsSelect<ExtArgs>
        | null;
        skip?: number;
        take?: number;
        where?: TicketsWhereInput;
    }

    Type Parameters

    Index

    Properties

    Cursor Docs

    Sets the position for listing Tickets.

    include?: TicketsInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    omit?: TicketsOmit<ExtArgs> | null

    Omit specific fields from the Tickets

    Sorting Docs

    Determine the order of Tickets to fetch.

    select?: TicketsSelect<ExtArgs> | null

    Select specific fields to fetch from the Tickets

    skip?: number

    Pagination Docs

    Skip the first n Tickets.

    take?: number

    Pagination Docs

    Take ±n Tickets from the position of the cursor.

    Filter, which Tickets to fetch.