Skip to content

Commit

Permalink
ENGCOM-5346: Added filter nfinset in product search #528
Browse files Browse the repository at this point in the history
  • Loading branch information
naydav authored Jun 24, 2019
2 parents dc74c48 + 0aebe29 commit 068c1ce
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 31 deletions.
2 changes: 1 addition & 1 deletion app/code/Magento/GraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type Mutation {

input FilterTypeInput @doc(description: "FilterTypeInput specifies which action will be performed in a query ") {
eq: String @doc(description: "Equals")
finset: [String] @doc(description: "Find in set. The value can contain a set of comma-separated values")
finset: [String] @deprecated (reason: "The finset filter is deprecated. Magento doesn't recomend to store comma separated values, therefore finset filter is redundant.")
from: String @doc(description: "From. Must be used with 'to'")
gt: String @doc(description: "Greater than")
gteq: String @doc(description: "Greater than or equal to")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ type Mutation {

input FilterTypeInput @doc(description:"Comment for FilterTypeInput") {
eq: String @doc(description:"Equal")
finset: [String]
from: String
gt: String
gteq: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ type Attribute @doc(description: "Attribute contains the attribute_type of the s
}
input FilterTypeInput @doc(description:"Comment for FilterTypeInput") {
eq: String @doc(description:"Equal")
finset: [String]
from: String
gt: String
gteq: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -505,20 +505,6 @@
],
'defaultValue' => null
],
[
'name' => 'finset',
'description' => '',
'type' => [
'kind' => 'LIST',
'name' => null,
'ofType' => [
'kind' => 'SCALAR',
'name' => 'String',
'ofType' => null
]
],
'defaultValue' => null
],
[
'name' => 'from',
'description' => '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -505,20 +505,6 @@
],
'defaultValue' => null
],
[
'name' => 'finset',
'description' => '',
'type' => [
'kind' => 'LIST',
'name' => null,
'ofType' => [
'kind' => 'SCALAR',
'name' => 'String',
'ofType' => null
]
],
'defaultValue' => null
],
[
'name' => 'from',
'description' => '',
Expand Down

0 comments on commit 068c1ce

Please sign in to comment.