Error: Nodes Cannot be Empty

Cover Image for Error: Nodes Cannot be Empty
Marcel Gruber

This edition of rare and silly errors is brought to you by LINQ:


_16
Exception: System.ArgumentException
_16
Message: nodes cannot be empty.
_16
Parameter name: nodes
_16
Source: Sitecore.ContentSearch.Linq
_16
at Sitecore.ContentSearch.Linq.Nodes.OrNode..ctor(QueryNode[] nodes)
_16
at Sitecore.ContentSearch.Linq.Parsing.ExpressionParser.VisitNonItemTypeEnumerableContainsMethod(MethodCallExpression methodCall, ConstantNode left, QueryNode right)
_16
at Sitecore.ContentSearch.Linq.Parsing.ExpressionParser.VisitBinary(BinaryExpression expression)
_16
at Sitecore.ContentSearch.Linq.Parsing.ExpressionParser.VisitBinary(BinaryExpression expression)
_16
at Sitecore.ContentSearch.Linq.Parsing.ExpressionParser.VisitBinary(BinaryExpression expression)
_16
at Sitecore.ContentSearch.Linq.Parsing.ExpressionParser.VisitBinary(BinaryExpression expression)
_16
at Sitecore.ContentSearch.Linq.Parsing.ExpressionParser.VisitWhereMethod(MethodCallExpression methodCall)
_16
at Sitecore.ContentSearch.Linq.Parsing.ExpressionParser.Parse(Expression expression)
_16
at Sitecore.ContentSearch.Linq.Parsing.GenericQueryable`2.GetQuery(Expression expression)
_16
at Sitecore.ContentSearch.Linq.Parsing.GenericQueryable`2.GetEnumerator()
_16
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
_16
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)

The offending line was where Sitecore ContentSearch's GetQueryable was called:


_7
using (var searchContext = QueryHelper.SearchIndex.CreateSearchContext())
_7
{
_7
var results = searchContext
_7
.GetQueryable<MySearchResultItem>()
_7
.Where(query)
_7
.ToList();
_7
}

Knowing that the problem wasn't actually there, I inspected the query that was built prior to calling GetQueryable:


_5
var query = PredicateBuilder.True<MySearchResultItem>();
_5
_5
ID[] legacyTargets = GetLegacyItemTargets();
_5
_5
query = query.And(x => legacyTargets.Contains(x.ItemId));

Given that the error message said nodes are empty, the smoking gun was the "array contains x" operation. But it worked on all environments, except for one! Turns out, it's because the legacyTargets array WAS empty. This was due to a content delta between environments in which some items that were expected to be there... Weren't.

This situation is such a classic one in Sitecore. When fetching any information related to items, there will always be a chance that information is missing or different than you were expecting. Defensive programming pays dividends.

Keep on building,

Marcel


More Posts

Cover Image for Content Editor Search Bar Not Working

Content Editor Search Bar Not Working

> Sometimes it works, sometimes not

Cover Image for Tips for Forms Implementations

Tips for Forms Implementations

> And other pro tips

Cover Image for Hello World

Hello World

> Welcome to the show

Cover Image for NextJS: Access has been blocked by CORS policy

NextJS: Access has been blocked by CORS policy

> CORS is almost as much of a nuisance as GDPR popups

Cover Image for NextJS: Unable to Verify the First Certificate

NextJS: Unable to Verify the First Certificate

> UNABLE_TO_VERIFY_LEAF_SIGNATURE

Cover Image for NextJS: Short URL for Viewing Layout Service Response

NextJS: Short URL for Viewing Layout Service Response

> Because the default URL is 2long4me

Cover Image for JSS: Reducing Bloat in Multilist Field Serialization

JSS: Reducing Bloat in Multilist Field Serialization

> Because: performance, security, and error-avoidance

Cover Image for Add TypeScript Type Checks to RouteData fields

Add TypeScript Type Checks to RouteData fields

> Inspired by error: Conversion of type may be a mistake because neither type sufficiently overlaps with the other.

Cover Image for Sitecore Symposium 2022

Sitecore Symposium 2022

> What I'm Watching 👀

Cover Image for Super Fast Project Builds with Visual Studio Publish

Super Fast Project Builds with Visual Studio Publish

> For when solution builds take too long

Cover Image for Symposium 2022 Reflections

Symposium 2022 Reflections

> Sitecore is making big changes

Cover Image for Tips for New Sitecore Developers

Tips for New Sitecore Developers

> Because learning Sitecore can be hard

Cover Image for Year in Review: 2022

Year in Review: 2022

> Full steam ahead