Skip to content

Commit 0158da3

Browse files
author
Harro van der Kroft
committedJan 23, 2019
feat: added extra information to FilterQuery
1 parent 2a8a02f commit 0158da3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
 

‎src/JsonApiDotNetCore/Internal/Query/FilterQuery.cs

+11
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,19 @@
44

55
namespace JsonApiDotNetCore.Internal.Query
66
{
7+
/// <summary>
8+
/// Allows you to filter the query, via the methods shown at
9+
/// <see href="https://json-api-dotnet.github.io/#/filtering">HERE</see>
10+
/// </summary>
711
public class FilterQuery : BaseQuery
812
{
13+
/// <summary>
14+
/// Allows you to filter the query, via the methods shown at
15+
/// <see href="https://json-api-dotnet.github.io/#/filtering">HERE</see>
16+
/// </summary>
17+
/// <param name="attribute">the json attribute you want to filter on</param>
18+
/// <param name="value">the value this attribute should be</param>
19+
/// <param name="operation">possible values: eq, ne, lt, gt, le, ge, like, in (default)</param>
920
public FilterQuery(string attribute, string value, string operation)
1021
: base(attribute)
1122
{

0 commit comments

Comments
 (0)
Please sign in to comment.