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 1c2726b commit 1f56ae8Copy full SHA for 1f56ae8
docs/usage/extensibility/resource-definitions.md
@@ -202,8 +202,8 @@ public class EmployeeDefinition : JsonApiResourceDefinition<Employee>
202
{
203
}
204
205
- public override IReadOnlyCollection<IncludeElementExpression> OnApplyIncludes(
206
- IReadOnlyCollection<IncludeElementExpression> existingIncludes)
+ public override IImmutableList<IncludeElementExpression> OnApplyIncludes(
+ IImmutableList<IncludeElementExpression> existingIncludes)
207
208
if (existingIncludes.Any(include =>
209
include.Relationship.Property.Name == nameof(Employee.Manager)))
0 commit comments