Hi there! Thank you for reading this : )
Right now, my resolver is saying a field is set to null. However I see field server side via a console.log().
This field cannot return as null, and that honestly doesn’t solve my problem. Let me know if you have any tips. I have checked spelling etc
I am able to change the return value of other fields, but I cant even set this one.
The entity comes from a where clause that uses relation blockchainInfo, and that works!
const existingToken = await TokenEntity.findOne({
where: {
blockchainInfo: {
address: args.input.blockchainInfoInput.address,
blockchain: args.input.blockchainInfoInput.blockchain,
},
},
relations: ["blockchainInfo"],
});