HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
프로그래머스 프론트엔드 데브코스 2기
프로그래머스 프론트엔드 데브코스 2기
/
📓
기동팀
/
💪
기동팀(CheQuiz)
/
유저 목데이터 단일 예시

유저 목데이터 단일 예시

Date
Tags
데이터

User

 
// 단일 { "_id": 'user01', "role": 'Regular', "isOnline": true, "posts": [], "likes": [ '62a43587d298d0396d7e731b', '62a43587d298d0396d7e731b' ], "comments": [ "62a301fed298d0396d7e7183", "62a30259d298d0396d7e718e" ] , "notifications": [], "fullName": 'Apple', "username": { "totalPoints": 0 }, "email": 'test@naver.com', "createdAt": Date.now().toString(), "updatedAt": Date.now().toString() }
//랭킹 상세 조회 버전 // 배열 [ { "_id": 'user01', "role": 'Regular', "isOnline": true, "posts": [], "likes": [ '62a43587d298d0396d7e731b', '62a43587d298d0396d7e731b' ], "comments": [ "62a301fed298d0396d7e7183", "62a30259d298d0396d7e718e" ] , "notifications": [], "fullName": 'Apple', "username": { "totalPoints": 0 }, "email": 'test@naver.com', "createdAt": Date.now().toString(), "updatedAt": Date.now().toString() }, { "_id": 'user02', "role": 'Regular', "isOnline": true, "posts": [], "likes": [ '62a43587d298d0396d7e731b', '62a43587d298d0396d7e731b' ], "comments": [ "62a301fed298d0396d7e7183", "62a30259d298d0396d7e718e" ] , "notifications": [], "fullName": 'Banana', "username": { "totalPoints": 10 }, "email": 'test@naver.com', "createdAt": Date.now().toString(), "updatedAt": Date.now().toString() } ]