From 0158da3e80cf0c82b846f13b52d5133f0ce3c50b Mon Sep 17 00:00:00 2001 From: Harro van der Kroft Date: Wed, 23 Jan 2019 15:33:12 +0100 Subject: [PATCH] feat: added extra information to FilterQuery --- src/JsonApiDotNetCore/Internal/Query/FilterQuery.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) 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) {