Is your feature request related to a problem? Please describe.
The toValueOf method should automatically add used field to the SELECT clause.
// before
SOQLCache.of('Account').with(Account.Industry).toIdOf(Account.CreatedById);
// after
SOQLCache.of('Account').toIdOf(Account.CreatedById);
Is your feature request related to a problem? Please describe.
The
toValueOfmethod should automatically add used field to the SELECT clause.