Skip to content

Commit 06fa2ed

Browse files
authored
Merge pull request #43 from thewillwill/patch-1
Fix variable 'queriedLinkes -> 'queriedLinks'
2 parents a3a9b7f + ec7a8f0 commit 06fa2ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/resolvers/Query.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ async function feed(parent, args, ctx, info) {
77
const allLinks = await ctx.db.query.links({})
88
const count = allLinks.length
99

10-
const queriedLinkes = await ctx.db.query.links({ first, skip, where })
10+
const queriedLinks = await ctx.db.query.links({ first, skip, where })
1111

1212
return {
13-
linkIds: queriedLinkes.map(link => link.id),
13+
linkIds: queriedLinks.map(link => link.id),
1414
count
1515
}
1616
}

0 commit comments

Comments
 (0)