Question, when using the include, it works perfectly for all the linked tables except for the user table, i am testing it separately :
`const query = new Moralis.Query("ListedItems");`
`query.include("user.username");`
`const queryResults = await query.find({userMasterKey:true});`
but the results are empty, i have tried
`query.include("User.username");`
`query.include("_user.username");`
`query.include("_User.username");`
but none worked any advice?