Skip to content

Commit

Permalink
fix: drop duplicate FileSystemEntryFilterType
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILLIPS71 committed May 11, 2024
1 parent 5447c62 commit 1b213b0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using Giantnodes.Service.Dashboard.Domain.Aggregates.Encodes;
using HotChocolate.Data.Filters;

namespace Giantnodes.Service.Dashboard.HttpApi.Types.Encodes.Filters;

public class EncodeFilterType : FilterInputType<Encode>
{
protected override void Configure(IFilterInputTypeDescriptor<Encode> descriptor)
{
descriptor
.Field(p => p.Id)
.Type<IdOperationFilterInputType>();
}
}

This file was deleted.

0 comments on commit 1b213b0

Please sign in to comment.