Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 2.18 KB

File metadata and controls

24 lines (21 loc) · 2.18 KB

Query Keys

List of all the query used in the projects

# QueryKey Description Type
01 ["auth"] Logged in user data UserData {}
02 ["people"] All users list UserPage []
03 ["feed"] Posts list on the homepage PostPage []
04 ["bookmarks"] Bookmarked posts of login user PostPage []
05 ["posts", userId] Posts created by user PostPage []
06 ["likes", userId] Posts liked by user PostPage []
07 ["reposts", userId] Posts reposts by user PostPage []
08 ["replies", userId] Posts replied by user PostPage []
09 ["posts-count", userId] Total number of posts by user PostsCount {}
10 ["post", postId] Single Post PostData {}
11 ["replies", postId] Replies on Post PostPage []
12 ["profile", userId] Profile user data ProfilePageUser {}
13 ["follower-info", userId] Followers info details FollowerInfo {}
14 ["following-info", userId] Following info details FollowingInfo {}
15 ["followers", userId] People following user UserPage []
16 ["following", userId] User following people UserPage []

Note : [] shows infite query & {} single query