Skip to content

Latest commit

 

History

History
68 lines (42 loc) · 1.87 KB

prisma.md

File metadata and controls

68 lines (42 loc) · 1.87 KB

Prisma

Prisma db reset, migrate, seed

Reset (doesnt work):

npx prisma migrate reset --skip-seed

Migrate:

npx prisma migrate dev --skip-seed

Seed:

npx prisma db seed

Dashboard:

npx prisma studio

Prisma User Model path

import { User } from '@prisma/client';
import { User } from '.prisma/client';

Pagination Prisma

  • offset - for small number, must select previous, can jump to page, can sort on any field
  • cursor - for infinite scroll facebook timeline, can handle large number, needs one sorted field, can't jump to page
  • offset and cursor-based pagination prisma docs and tutorial
  • Prisma code example

Prisma Postgres full text search

  • text search, search prop docs

  • filtering AND, OR, where, contains docs

  • problem: prisma where and orderBy type errors, solution: cast object e.g {...} as Prisma.UserOrderByWithRelationAndSearchRelevanceInput,

  • Prisma generates client on yarn install automatically

Upgrade to Prisma 4

  • docs
  • validate schema npx prisma validate
  • nothing changed, all works

Full text search with Postgres

  • _ matches space literally, I need that and not & to match phrase with space cat dog
  • cat & dog matches those two words anywhere in same content, in any order, cat some text dog
  • Github issue