Skip to content

Commit f244cb0

Browse files
committed
Added snapshot
1 parent 7dce5bc commit f244cb0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/__snapshots__/InterfaceTests.Schema_Snapshot.snap

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ type Query {
4848
products("Returns the elements in the list that come after the specified cursor." after: Version2 "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ProductsConnection @listSize(assumedSize: 50, slicingArguments: [ "first", "last" ], slicingArgumentDefaultValue: 10, sizedFields: [ "edges", "nodes" ], requireOneSlicingArgument: false) @cost(weight: "10")
4949
argumentWithExplicitType(arg: Version2): String!
5050
nullableArgumentWithExplicitType(arg: Version2): String!
51+
nullableArrayArgumentRef(items: [String!]): String!
52+
arrayArgumentRef(items: [String!]!): String!
53+
arrayNullableElementArgumentRef(items: [String]!): String!
54+
nullableArrayNullableElementArgumentRef(items: [String]): String!
55+
nullableListArgumentRef(items: [String!]): String!
56+
listArgumentRef(items: [String!]!): String!
57+
listNullableElementArgumentRef(items: [String]!): String!
58+
nullableListNullableElementArgumentRef(items: [String]): String!
5159
}
5260

5361
type Television implements Product {

0 commit comments

Comments
 (0)