|
4 | 4 |
|
5 | 5 | namespace JsonApiDotNetCore.Internal.Query
|
6 | 6 | {
|
| 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> |
7 | 11 | public class FilterQuery : BaseQuery
|
8 | 12 | {
|
| 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> |
9 | 20 | public FilterQuery(string attribute, string value, string operation)
|
10 | 21 | : base(attribute)
|
11 | 22 | {
|
|
0 commit comments