I have following custom fields for users.
favouriteEntries - 'entry' type field with multiple entries per user
notificationPreference - Lightswitch field
My plugin should email notifications to users who follow that entry when there is an update to a particular entry (Entry::EVENT_AFTER_SAVE).
use craft\elements\User;
$users = User::find()->all();
With the above code, I can get all user data including notificationPreference but favouriteEntries. favouriteEntries field returns null even if it has entries for all users.
What's the correct way to get all user data including favouriteEntries field?
favouriteEntriesshould never ever return null in no case since it will always contain an object of typeElementQuery. Could you eventually show your entire code? – Robin Schambach Sep 17 '18 at 10:22