We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d089461 commit d7e71d8Copy full SHA for d7e71d8
src/JsonApiDotNetCore/Hooks/Traversal/TraversalHelper.cs
@@ -185,6 +185,7 @@ HashSet<TEntity> ProcessEntities<TEntity>(IEnumerable<TEntity> incomingEntities)
185
var contextEntity = _graph.GetContextEntity(type);
186
foreach (RelationshipAttribute attr in contextEntity.Relationships)
187
{
188
+ if (!attr.CanInclude) continue;
189
if (!RelationshipProxies.TryGetValue(attr, out RelationshipProxy proxies))
190
191
DependentType dependentType = GetDependentTypeFromRelationship(attr);
0 commit comments