Skip to content

Commit 376fd49

Browse files
committed
Added API-functional tests
1 parent 35d0788 commit 376fd49

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

dev/tests/integration/testsuite/Magento/Framework/GraphQl/_files/schemaA.graphqls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ type Mutation {
99
input FilterTypeInput @doc(description:"Comment for FilterTypeInput") {
1010
eq: String @doc(description:"Equal")
1111
finset: [String]
12+
nfinset: [String]
1213
from: String
1314
gt: String
1415
gteq: String

dev/tests/integration/testsuite/Magento/Framework/GraphQl/_files/schemaC.graphqls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ type Attribute @doc(description: "Attribute contains the attribute_type of the s
2020
input FilterTypeInput @doc(description:"Comment for FilterTypeInput") {
2121
eq: String @doc(description:"Equal")
2222
finset: [String]
23+
nfinset: [String]
2324
from: String
2425
gt: String
2526
gteq: String

dev/tests/integration/testsuite/Magento/Framework/GraphQl/_files/schema_response_sdl_description.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -519,6 +519,20 @@
519519
],
520520
'defaultValue' => null
521521
],
522+
[
523+
'name' => 'nfinset',
524+
'description' => '',
525+
'type' => [
526+
'kind' => 'LIST',
527+
'name' => null,
528+
'ofType' => [
529+
'kind' => 'SCALAR',
530+
'name' => 'String',
531+
'ofType' => null
532+
]
533+
],
534+
'defaultValue' => null
535+
],
522536
[
523537
'name' => 'from',
524538
'description' => '',

dev/tests/integration/testsuite/Magento/Framework/GraphQl/_files/schema_with_description_sdl.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -519,6 +519,20 @@
519519
],
520520
'defaultValue' => null
521521
],
522+
[
523+
'name' => 'nfinset',
524+
'description' => '',
525+
'type' => [
526+
'kind' => 'LIST',
527+
'name' => null,
528+
'ofType' => [
529+
'kind' => 'SCALAR',
530+
'name' => 'String',
531+
'ofType' => null
532+
]
533+
],
534+
'defaultValue' => null
535+
],
522536
[
523537
'name' => 'from',
524538
'description' => '',

0 commit comments

Comments
 (0)