Git Product home page Git Product logo

Comments (2)

IslandRhythms avatar IslandRhythms commented on May 23, 2024
import * as mongoose from 'mongoose';


interface RawUserDocument {
  email: string;
  passwordHash: string;
  name: string;
  username: string;
  profileImageURL: string;
  following: mongoose.Types.ObjectId[];
  followers: mongoose.Types.ObjectId[];
}

const userSchema = new mongoose.Schema<RawUserDocument>({
  email: { type: String, required: true, unique: true, index: true },
  passwordHash: { type: String, required: true },
  name: { type: String, required: true, index: true },
  username: { type: String, required: true, unique: true, index: true },
  profileImageURL: {
    type: String,
    required: true,
  },
  following: [{ type: mongoose.Schema.Types.ObjectId, ref: "User" }],
  followers: [{ type: mongoose.Schema.Types.ObjectId, ref: "User" }]
});

const User = mongoose.model<RawUserDocument>("User", userSchema);

const getUserByID = async <
  Fields extends keyof RawUserDocument = keyof RawUserDocument
>(
  id: string,
  options?: {
    fields: Fields[];
  }
): Promise<undefined> => {
  if (options?.fields) {
    const test1: { _id: mongoose.Types.ObjectId } | null = await User.findById(
      id
    ).select(options.fields.join(" "));
    const test2: { _id: mongoose.Types.ObjectId } | null = await User.findById(
      id
    ).select<Pick<RawUserDocument, Fields>>(options.fields.join(" "));
  }
};


// Narrowing the unknown type still doesn't work

// const getUserByID = async <
//   Fields extends keyof Omit<RawUserDocument, "_id"> = keyof Omit<
//     RawUserDocument,
//     "_id"
//   >
// >(
//   id: string,
//   options?: {
//     fields: Fields[];
//   }
// ): Promise<undefined> => {
//   if (options?.fields) {
//     const test1: { _id: mongoose.Types.ObjectId } | null = await User.findById(
//       id
//     ).select(options.fields.join(" "));
//     let test2: { _id: mongoose.Types.ObjectId } | null = null;
//     const test3 = await User.findById(id).select<Pick<RawUserDocument, Fields>>(
//       options.fields.join(" ")
//     );
//     // Still a type conflict here, despite establishing that the _id is in fact an ObjectID
//     if (test3 && test3._id instanceof mongoose.Types.ObjectId) test2 = test3;
//   }
// };

from mongoose.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.