Giter VIP home page Giter VIP logo

Comments (2)

kamilmysliwiec avatar kamilmysliwiec commented on July 28, 2024

We're currently working on re-recordings of the entire Postgres chapter and will update videos shortly :)

from courses.nestjs.com.

thxv3n0lvl avatar thxv3n0lvl commented on July 28, 2024

So first of all, apologies to the authors for posting this as the Postgresql bit will change as mentioned in the previous comment...

The error:

src/coffees/coffees.service.ts:20:56 - error TS2559: Type 'string' has no properties in common with type 'FindOneOptions<Coffee>'.

20     const coffee = await this.coffeeRepository.findOne(id);

I faced this today and wasn't a huge deal to fix, nevertheless I lost my focus on the course to find out the reason... not sure if this affects the rest of the samples from the course but this is the way I did it:

  1. changed the id parameters type from string to number from my coffee.controller.ts and coffee.service.ts
  2. In the coffee.service.ts::CoffeesService.findOne() I changed the use of
    findOne(id); to findOneBy({id});
    The resulting function was
  async findOne(id: number) {
    const coffee = await this.coffeeRepository.findOneBy({id});
  ... snip snip ...
  }

after that I just checked again the console and everything was working as expected again :)
BTW, nice course I love it !!!

from courses.nestjs.com.

Related Issues (17)

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.