summaryrefslogtreecommitdiffstats
path: root/backend/src/resolvers/Query.js
diff options
context:
space:
mode:
Diffstat (limited to 'backend/src/resolvers/Query.js')
-rw-r--r--backend/src/resolvers/Query.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/backend/src/resolvers/Query.js b/backend/src/resolvers/Query.js
index b1e0c5b..7e61c07 100644
--- a/backend/src/resolvers/Query.js
+++ b/backend/src/resolvers/Query.js
@@ -4,13 +4,12 @@ const { forwardTo } = require('prisma-binding');
const Query = {
items(parent, args, ctx, info) {
+ console.log(args);
return ctx.db.query.items({ ...args }, info);
},
itemsConnection: forwardTo('db'),
- // TODO: Make sure they own this order before looking it up
- // order: forwardTo('db'),
async order(parent, args, ctx, info) {
// 1. make sure they are signed in
if (!ctx.request.userId) {