"Cannot return null for non-nullable field" when I see the field in console.log

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"],
        });

Screen Shot 2022-04-22 at 9.34.14 AM

second image, thank you again < 3

NEVER GIVE UP! I figured it out