Hi guys, I am having issue when I try to query rel...
# orm-help
o
Hi guys, I am having issue when I try to query relatedDocUpdates, I can’t get connected user id from it 😞 Error message: Cannot return null for non-nullable field DocUpdate.user. Any help much appreciated!
p
Try
Copy code
async relatedDocUpdates(parent, args, ctx, info) {
    const relatedDocUpdates = await ctx.db.query.docUpdates({
        where: {
          doc: args.docId
        }
    }, info);
    return relatedDocUpdates;
  }
j
You need to pass
info
to the query.
πŸŽ‰ 1
πŸ‘ 1
πŸ’― 1
o
Thanks guys, @Jenkins info thing worked!
🦜 2
j
De nada ❀️