File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
app/code/Magento/GraphQl/etc Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -65,18 +65,18 @@ input FilterTypeInput @doc(description: "FilterTypeInput specifies which action
65
65
nin : [String ] @doc (description : " Not in. The value can contain a set of comma-separated values" )
66
66
}
67
67
68
- input FilterEqualTypeInput @doc (description : " Specifies which action will be performed in a query " ) {
69
- in : [String ] @doc (description : " In. The value can contain a set of comma-separated values " )
70
- eq : String @doc (description : " Equals " )
68
+ input FilterEqualTypeInput @doc (description : " Defines a filter that matches the input exactly. " ) {
69
+ in : [String ] @doc (description : " An array of values to filter on " )
70
+ eq : String @doc (description : " A string to filter on " )
71
71
}
72
72
73
- input FilterRangeTypeInput @doc (description : " Specifies which action will be performed in a query " ) {
74
- from : String @doc (description : " From " )
75
- to : String @doc (description : " To " )
73
+ input FilterRangeTypeInput @doc (description : " Defines a filter that matches a range of values, such as prices or dates. " ) {
74
+ from : String @doc (description : " The beginning of the range " )
75
+ to : String @doc (description : " The end of the range " )
76
76
}
77
77
78
- input FilterMatchTypeInput @doc (description : " Specifies which action will be performed in a query " ) {
79
- match : String @doc (description : " Match. Can be used for fuzzy matching. " )
78
+ input FilterMatchTypeInput @doc (description : " Defines a filter that performs a fuzzy search. " ) {
79
+ match : String @doc (description : " One or more words to filter on " )
80
80
}
81
81
82
82
type SearchResultPageInfo @doc (description : " SearchResultPageInfo provides navigation for the query response" ) {
You can’t perform that action at this time.
0 commit comments