Skip to content

Commit

Permalink
fix: remove missing logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kewitz committed Dec 12, 2024
1 parent 5e27a75 commit 30a5e39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ export const OrdersCollectionResolver = async (args, req: express.Request) => {
}
const { offset, limit } = args;
return {
nodes: () => models.Order.findAll({ include, where, order, offset, limit, logging: true }),
nodes: () => models.Order.findAll({ include, where, order, offset, limit }),
totalCount: () => models.Order.count({ include, where }),
limit: args.limit,
offset: args.offset,
Expand Down

0 comments on commit 30a5e39

Please sign in to comment.