22. Comment on Photo

김종민·2022년 4월 26일
0

insta-backend

목록 보기
22/37

1. schema.prisma

model User {
  id        Int       @id @default(autoincrement())
  username  String    @unique
  email     String    @unique
  password  String
  bio       String?
  avatar    String?
  followers User[]    @relation("FollowRelation", references: [id])
  following User[]    @relation("FollowRelation", references: [id])
  createdAt DateTime  @default(now())
  updatedAt DateTime  @updatedAt
  photos    Photo[]
  likes     Like[]
  comments  Comment[]
}

model Photo {
  id        Int       @id @default(autoincrement())
  user      User      @relation(fields: [userId], references: [id])
  userId    Int
  file      String
  caption   String?
  hashtags  Hashtag[]
  likes     Like[]
  createdAt DateTime  @default(now())
  updatedAt DateTime  @updatedAt
  comments  Comment[]
}

model Hashtag {
  id        Int      @id @default(autoincrement())
  hashtag   String   @unique
  photos    Photo[]
  createdAt DateTime @default(now())
  updatedAt DateTime @updatedAt
}

model Like {
  id        Int      @id @default(autoincrement())
  createdAt DateTime @default(now())
  updatedAt DateTime @updatedAt
  photo     Photo    @relation(fields: [photoId], references: [id])
  user      User     @relation(fields: [userId], references: [id])
  photoId   Int
  userId    Int

  @@unique([photoId, userId])
}

model Comment {
  id        Int      @id @default(autoincrement())
  createdAt DateTime @default(now())
  updatedAt DateTime @updatedAt
  user      User     @relation(fields: [userId], references: [id])
  photo     Photo    @relation(fields: [photoId], references: [id])
  payload   String
  userId    Int
  photoId   Int
}

check!!
1. model Comment 확인!!
2. model User와 model Photo에서 Comment와의 relation확인할 것

2. comment.typeDefs.js

import { gql } from 'apollo-server'

export default gql`
  type Comment {
    id: Int!
    createdAt: String!
    updatedAt: String!
    user: User!
    phoho: Photo!
    payload: String!
    isMine: Boolean!
  }
`

3. comment.resolvers.js

import prisma from "../client"

export default {
  Comment: {
    isMine: ({ userId }, _, { loggedInUser }) => {
      if (!loggedInUser) {
        return false
      }
      return userId === loggedInUser.id
    },
    user: ({ userId }) => prisma.user.findUnique({ where: { id: userId } }),
  },
}

4. createComment.typeDefs.js

import { gql } from 'apollo-server'

export default gql`
  type CreateCommentResult {
    ok: Boolean!
    error: String
  }
  type Mutation {
    createComment(photoId: Int!, payload: String!): CreateCommentResult!
  }
`

check!! photoId를 arg로 받는 거 확인할 것!!!
payload는 댓글 내용!!

5. createComment.resolvers.js

import prisma from '../../client'
import { protectedResolver } from '../../users/users.util'

export default {
  Mutation: {
    createComment: protectedResolver(
      async (_, { photoId, payload }, { loggedInUser }) => {
        const ok = await prisma.photo.findUnique({
          where: { id: photoId },
          select: { id: true },
        })
        if (!ok) {
          return {
            ok: false,
            error: 'Photo not found',
          }
        }
        await prisma.comment.create({
          data: {
            payload,
            photo: {
              connect: { id: photoId },
            },
            user: {
              connect: { id: loggedInUser.id },
            },
          },
        })
        return {
          ok: true,
        }
      }
    ),
  },
}

check!!
await prisma.comment.create에서 photo와 user를 connect 해 주는 부분 확인할 것!!

profile
코딩하는초딩쌤

22개의 댓글

comment-user-thumbnail
2022년 10월 26일

The information you share is excellent and exciting, and thanks to that, I know more valuable things. Keep posting interesting things and I will keep an eye on your posts. krunker

1개의 답글
comment-user-thumbnail
2023년 4월 11일

Drift Boss is a famous drifting game. In the game, you will have the opportunity to control your car on endless roads full of difficult turns and collisions. The game sounds simple but it takes a lot of practice to be able to drift well around corners. Join the game now to prove that you are the best racer and score the most points.

답글 달기
comment-user-thumbnail
2023년 4월 22일

Welcome to the obvious escorts benefit in your goliath city Delhi. We have gotten as Delhi Call Young women. A call young woman is known essentially to meet one's sexual necessities or basics.
https://www.sanakhan.in/katwaria-sarai-call-girls.html
https://www.sanakhan.in/karkardooma-call-girls.html
https://www.sanakhan.in/hari-nagar-call-girls.html
https://www.sanakhan.in/jorhipur-call-girls.html
https://www.sanakhan.in/hauz-khas-call-girl.html

답글 달기
comment-user-thumbnail
2023년 5월 3일

I can't post pictures uno online in comments

답글 달기
comment-user-thumbnail
2023년 5월 19일

Whether you are looking to ship goods across the state or across the country, there are plenty of freight transport providers in Michigan that can help. Here are some of the key players in the industry and the services they offer: https://www.youtube.com/watch?v=kvWcrsP1iQ0

답글 달기
comment-user-thumbnail
2023년 7월 21일

The information you share is excellent and exciting, and thanks to that, I know more valuable things. Keep posting interesting things and I will keep an eye on your posts https://busd-store.com/

1개의 답글
comment-user-thumbnail
2023년 8월 23일

The largest call girls cash payment are standing by to welcome you with amiable conversations and attractive looks. There will be many girls for you to pick from. There are many different types of nearby escort girls, including young, aged, MILF, breasts, skinny, curvy, Indian, Russian, and more.
https://sheetaldubay.com/jalandhar-call-girls4/
https://sheetaldubay.com/call-girl-in-amritsar4/
https://sheetaldubay.com/escort-navi-mumbai4/
https://sheetaldubay.com/chennai-call-girls4/
https://sheetaldubay.com/call-girls-hyderabad4/
https://sheetaldubay.com/kolkata-call-girls4/
https://sheetaldubay.com/call-girl-bangalore4/

답글 달기
comment-user-thumbnail
2023년 8월 28일
답글 달기
comment-user-thumbnail
2024년 8월 30일

saa

답글 달기
comment-user-thumbnail
2024년 9월 16일

Writing curl commands can be a hassle, so I developed a tool to generate them easily. https://doramasmp4.com.mx/

답글 달기
comment-user-thumbnail
2024년 12월 4일

Your writing is truly inspiring! I'm eager to elevate my own skills. Could you please offer feedback on my latest blog post? I've linked it below.

https://majnulaila.com/call-girl-in-jaipur/
https://majnulaila.com/call-girl-in-bangalore/
https://majnulaila.com/call-girl-in-dehradun/

답글 달기
comment-user-thumbnail
2025년 3월 18일

https://participa.terrassa.cat/profiles/shipfinex_shipfinex/timeline?locale=es
https://discuss.bikeindex.org/u/shipfinexfzco/activity
https://www.telix.pl/profile/shipfinexfzco/
https://liulo.fm/hi/Shipfinex
https://www.hogwartsishere.com/1638246/
https://www.lasso.net/go/link/RmK2PD
https://killtv.me/user/shipfinexfzco/
https://www.ram1500diesel.com/members/shipfinex.70578/
https://www.layitlow.com/members/shipfinex.760241/
https://jobs.njota.org/profiles/6178054-shipfinex-fzco
https://shareyoursocial.com/shipfinexfzco1
https://code.antopie.org/ShipFinexFZCOo
https://gitlab.vuhdo.io/shipfinexfzco
https://designaddict.com/community/profile/shipfinexfzco/
https://www.balatarin.com/users/shipfinexfzco
https://gitee.com/shipfinexfzco
https://webspeed.intensys.pl/wyniki/208637/
https://copynotes.be/shift4me/forum/user-11034.html
https://www.xc40forum.com/members/shipfinex.24100/
https://rapidapi.com/user/sshipfinex
https://www.longisland.com/profile/shipfinexfzco
https://civitai.com/user/shipfinex1
https://jali.me/shipfinex
https://eo-college.org/members/shipfinexfzco/
https://linkstack.lgbt/@ShipFinexFZCO
https://ask.embedded-wizard.de/user/shipfinex
https://website.informer.com/shipfinex.com
https://global14.com/members/shipfinexfzco/profile/
https://edabit.com/user/cqcFdbnRJxZEhjfcQ
https://community.alexgyver.ru/members/sshipfinex.98417/#about
https://scrapbox.io/shipfinex/High_DA_and_PA_sites_list
https://app.talkshoe.com/user/shipfinexfzco/about
https://www.bricklink.com/message.asp?ID=1509685
https://ingmac.ru/forum/?PAGE_NAME=profile_view&UID=84519
https://participacion.cabildofuer.es/profiles/ShipFinexFZCO/timeline?locale=en
https://protocol.ooo/ja/users/shipfinex-fzco-38cdfa99-464b-45a3-a37a-b92c9f25e3b1
https://3dlancer.net/profile/u1085740
https://www.geniusu.com/profiles/2623488
https://www.homepokergames.com/vbforum/member.php?u=144517&tab=aboutme&simple=1
https://www.mtg-forum.de/user/114487-shipfinexfzco/
https://www.fintact.io/user/shipfinexfzco
https://www.bitsdujour.com/profiles/IFjIZy
https://redfernelectronics.co.uk/forums/users/shipfinexfzco/
https://linknox.com/shipfinex
https://jobs.votesaveamerica.com/employers/9e8648b5-2c69-41b3-9c6d-2575c700faa8/dashboard
https://aboutme.style/shipfinexfzco
https://cadillacsociety.com/users/shipfinex1/
https://app.hellothematic.com/creator/profile/962796
https://postr.yruz.one/profile/shipfinexfzco
https://forum.home.pl/members/shipfinex.68480/
https://gravatar.com/sshipfinex
http://flightgear.jpn.org/userinfo.php?uid=48928
https://sustalks.com/shipfinexfzco
https://mypaper.pchome.com.tw/shipfinex/about

https://community.isc2.org/t5/user/viewprofilepage/user-id/1259424979
https://llm-guide.com/about/shipfinex
https://defence.in/members/shipfinex.3264/
https://www.wallstreetoasis.com/user/1337924
https://forum.inductiveautomation.com/u/shipfinex/summary
https://profile.hatena.ne.jp/sshipfinex/profile
https://app.astrobin.com/u/shipfinexfzco#about
https://longbets.org/user/shipfinexfzco/
https://forums.sonicretro.org/index.php?members/shipfinex.55947/
https://forum.dfinity.org/u/shipfinexfzco
https://community.sw.siemens.com/s/profile/005Vb000008iBJK
https://community.ebay.com/t5/user/viewprofilepage/user-id/32892796?cti=0&pp=1&rp=1
https://www.googlecloudcommunity.com/gc/user/viewprofilepage/user-id/613235
https://forum.openzeppelin.com/u/shipfinexfzco/summary
https://forum.cardano.org/u/shipfinexfzco/summary
https://enkling.com/shipfinexfzco11

https://www.sideprojectors.com/user/profile/146344
https://freeicons.io/profile/743184
https://www.openrec.tv/user/kzpgp4roxhp1c8azywei/about
https://www.ramrojob.com/organization/shipfinex-fzco
https://storyweaver.org.in/en/users/1090347
https://opencollective.com/shipfinex-fzco1
https://mikropragmata.lifo.gr/meli/37666/
https://www.riptapparel.com/pages/member?shipfinexfzco
https://www.investagrams.com/Profile/shipfi1431650
https://fanart.lionking.org/Artists/ShipFinex_FZCO/
https://atavi.com/share/x5qd3xz19isbj
https://www.hogwartsishere.com/1699799/
https://www.merlot.org/merlot/viewMember.htm?id=1482285
https://www.onread.com/user/id581375
https://www.laundrynation.com/community/profile/shipfinexfzco/
https://logopond.com/shipfinexfzco1/profile/737814/?filter=&page=
https://forum.clientexec.com/members/shipfinex.51900/
https://rotorbuilds.com/profile/108352/
https://forum.citadel.one/user/shipfinex
https://ecuamusica.com/shipfinex-fzco
https://centyfy.com/shipfinexfzco
https://kyourc.com/shipfinexfzco1
https://ackeer.com/shipfinex
https://xeogaming.org/profile.php?id=4194
https://forum.newrelic.com/s/profile/005Ph000007RNhGIAW
https://shipfinex.nolt.io/
https://shipfinex.stck.me/
https://leasedadspace.com/members/shipfinexfzco/
https://www.beatstars.com/shipfinexfzco/about
https://www.coursera.org/user/0cfaadc65b474231667d193a619bab2c
https://community.hodinkee.com/members/shipfinexfzco
https://ai.ceo/shipfinexfzco

답글 달기
comment-user-thumbnail
2025년 3월 18일

https://desksnear.me/users/shipfinex-fzco
https://www.royalroad.com/profile/642901
https://learningapps.org/display?v=p3ouopu1325
https://connect.gt/user/shipfinexfzco
https://reptes.dca.cat/profiles/shipfinexfzco/timeline?locale=en
https://litelink.at/shipfinexfzco
https://www.indiegogo.com/individuals/38410353
https://forum.astronomy.com/u/shipfinex/preferences/profile
https://joy.link/shipfinexfzco
https://snippet.host/crfkvz
https://snippet.host/xnjyxc
https://pixabay.com/users/shipfinex-43589097/
https://guidetoiceland.is/traveler-profiles/shipfinex
https://fileforum.com/profile/shipfinex
https://genius.com/shipfinexfzco
https://shipfinexfzco.foroactivo.com/u1
https://www.dwell.com/@shipfinexshipfinex7031
https://cnccode.com/shipfinexfzco1
https://www.boredpanda.com/?p=8162977
https://www.boredpanda.com/community/kleberdugue-dd-a-l-947/
https://independent.academia.edu/ShipFinexFZCO
https://www.bloglovin.com/@shipfinexfzco
https://forums.thebump.com/profile/shipfinexfzco
https://www.ratrodsrule.com/members/shipfinexfzco.91748/#about
https://redebuck.com/shipfinex_fzco
https://whatson.plus/ShipFinex10
https://gmatclub.com/forum/members/member-1615719.html
https://themediumblog.com/shipfinexfzco
https://www.chatwork.com/shipfinex
https://wemakeit.com/users/shipfinex-fzco
https://forum.lexulous.com/user/shipfinex
https://forum.ap.herozerogame.com/index.php?/user/28903-shipfinexfzco/
https://usellbuybid.com/user/profile/987105
https://concretesubmarine.activeboard.com/m3818485/profile/
https://www.publish0x.com/@ShipFinex-FZCO
https://www.tai-ji.net/members/profile/3356651/ShipFinex%20FZCO.htm
https://www.atii.com.au/profile/sshipfinex/profile
http://gotinstrumentals.com///front/profile/shipfinexfzco
https://www.ewebdiscussion.com/members/shipfinexfzco.90254/#about
http://opensource.platon.org/forum/projects/viewtopic.php?p=12767940#12767940
https://glitch.com/@shipfinex
https://www.neatorama.com/whois/162020/
https://manybooks.net/user/shipfinex-fzco
https://apnagulf.com/user/shipfinex/
https://www.onmap.ae/business-services/https-www-shipfinex-com
https://www.sourcemiddleeast.com/contact-us
https://forum.virtualmin.com/u/shipfinexfzcoo/activity/topics
https://www.idealist.org/admin/3541b87bfb0d459a8f0aecb3737599cd
https://forum.joomla.org/memberlist.php?mode=viewprofile&u=926878
https://shipfinexshipfinex.crevado.com/about
https://www.videezy.com/members/shipfinex466874
https://shipfinexfzco.cheezburger.com/

https://shipfinex.com.usitestat.com/
https://shipfinex.com.websiteoutlook.com/
https://plerb.freeforums.net/user/36
https://www.doomworld.com/profile/58191-shipfinex/
https://shipfinex.bandcamp.com/track/maritime
https://shipfinex.com.sitescorechecker.com/
https://www.roblox.com/users/8040289876/profile
bento.me/shipfinex
https://www.pnth-terreenaction.org/pnth/?ShipFinex
https://foursquare.com/shipfinf9399743
https://pittsburghtribune.org/shipfinexfzco
https://joinentre.com/profile/shipfinex
https://forum.epicbrowser.com/profile.php?id=69418
https://nprlive.com/profile/shipfinexfzco
https://www.anibookmark.com/user/shipfinexfzco.html
http://www.activewin.com/user.asp?Action=Read&UserIndex=4757960
https://www.wongcw.com/profile/shipfinexfzco
https://www.letsknowit.com/shipfinex61775
https://www.sortfolio.in/listings/39984-shipfinex
https://siachen.com/shipfinex/
https://www.bizoforce.com/business-directory/shipfinex/
https://www.grosse-seefahrt.de/user/15985/
https://shipfinex-fzco.runnerspace.com/profile.php?do=news&member_id=748630
https://www.marine24.com/profile/sshipfinex15416/profile

https://habr.com/ru/users/shipfinex/
https://note.com/shipfinex_fzco
https://next.nexusmods.com/profile/shipfinexfzco
https://huggingface.co/shipfinex
https://www.mixcloud.com/shipfinexfzco/
https://forums.pelicanparts.com/members/309147.html
https://cannabis.net/user/170795
https://inkbunny.net/shipfinexfzco
https://amsterdamsmartcity.com/members/38169
https://bulios.com/@shipfinexfzco
https://truckymods.io/user/327069

https://paalk.com/shipfinexfzco
https://ivebo.co.uk/shipfinexfzco
https://keywordspace.com/site-info/shipfinex.com
https://www.skijanje.hr/hr/skijanje/klub.php?id=3&lgn=shipfinexfzco
https://groover.co/en/band/profile/0.shipfinex/
https://sciencemission.com/profile/shipfinexfzco

https://www.hebergementweb.org/members/shipfinexfzco.748213/
https://bimworx.net/user/shipfinex-fzco/profile/
https://secondstreet.ru/profile/shipfinexfzco/
https://www.battlecam.com/profile/info/4484209
https://www.inventoridigiochi.it/membri/shipfinexfzco/
https://forum.skullgirlsmobile.com/members/sshipfinex.82923/#about
https://www.shippingexplorer.net/en/user/shipfinex25/142885
https://www.decidim.barcelona/profiles/shipfinexfzco/activity
https://haveagood.holiday/users/395671
https://blogs.lowcostavia.com.ua/members/shipfinexfzco/
https://www.smitefire.com/profile/shipfinex-fzco-196225?profilepage
https://co-roma.openheritage.eu/profiles/shipfinex_shipfinex/timeline
https://expathealthseoul.com/profile/shipfinex-fzco/
https://demo.wowonder.com/shipfinex
https://www.malikmobile.com/shipfinex
https://www.bandlab.com/shipfinexfzco
https://community.magicport.ai/u/chandrama-vishwakarm/summary
https://www.aicrowd.com/participants/shipfinexfzco
https://www.telerik.com/forums/profile/2973aca3-e85a-4082-b919-e927a30975ac
https://www.canadavideocompanies.ca/forums/users/shipfinexfzco/
https://thesn.eu/shipfinexfzco
https://menta.work/user/162038
https://lit.link/en/shipfinexfzco
https://git.project-hobbit.eu/shipfinex
https://www.dnnsoftware.com/activity-feed/my-profile/userid/3241963
https://awan.pro/forum/user/26084/
https://beteiligung.stadtlindau.de/profile/shipfinexfzco/
https://www.cfd-online.com/Forums/members/shipfinexfzco.html

답글 달기

관련 채용 정보