Skip to content

Commit

Permalink
Update TAG.js
Browse files Browse the repository at this point in the history
  • Loading branch information
HUNG-rushb committed Jan 7, 2024
1 parent c298bbd commit 5b60223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolvers/Query/TAG.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const tagQuery = {
},
suggestTags: async (parent, args, info) => {
const a = await prisma.tag.findMany();
return a.slice(0, 10);
return a.slice(0, 20);
},
tagInfo: async (parent, args, info) => {
return await prisma.tag.findUnique({
Expand Down

0 comments on commit 5b60223

Please sign in to comment.