diff --git a/src/JsonApiDotNetCore/Internal/Query/FilterQuery.cs b/src/JsonApiDotNetCore/Internal/Query/FilterQuery.cs
index 220f35b506..541203dc4c 100644
--- a/src/JsonApiDotNetCore/Internal/Query/FilterQuery.cs
+++ b/src/JsonApiDotNetCore/Internal/Query/FilterQuery.cs
@@ -4,8 +4,19 @@
namespace JsonApiDotNetCore.Internal.Query
{
+ ///
+ /// Allows you to filter the query, via the methods shown at
+ /// HERE
+ ///
public class FilterQuery : BaseQuery
{
+ ///
+ /// Allows you to filter the query, via the methods shown at
+ /// HERE
+ ///
+ /// the json attribute you want to filter on
+ /// the value this attribute should be
+ /// possible values: eq, ne, lt, gt, le, ge, like, in (default)
public FilterQuery(string attribute, string value, string operation)
: base(attribute)
{