diff --git a/src/HotChocolate/Neo4J/test/HotChocolate.Data.Neo4J.Paging.Tests/Offset/__snapshots__/Neo4JOffsetPagingTests.OffsetPaging_SchemaSnapshot.snap b/src/HotChocolate/Neo4J/test/HotChocolate.Data.Neo4J.Paging.Tests/Offset/__snapshots__/Neo4JOffsetPagingTests.OffsetPaging_SchemaSnapshot.snap index dee9d88d243..b2376d4193f 100644 --- a/src/HotChocolate/Neo4J/test/HotChocolate.Data.Neo4J.Paging.Tests/Offset/__snapshots__/Neo4JOffsetPagingTests.OffsetPaging_SchemaSnapshot.snap +++ b/src/HotChocolate/Neo4J/test/HotChocolate.Data.Neo4J.Paging.Tests/Offset/__snapshots__/Neo4JOffsetPagingTests.OffsetPaging_SchemaSnapshot.snap @@ -14,14 +14,16 @@ type Foo { bar: String! } -type FooCollectionSegment { - items: [Foo] - "Information to aid in pagination." - pageInfo: CollectionSegmentInfo! +type Query { + root(skip: Int take: Int): RootCollectionSegment } -type Query { - root(skip: Int take: Int): FooCollectionSegment +"A segment of a collection." +type RootCollectionSegment { + "Information to aid in pagination." + pageInfo: CollectionSegmentInfo! + "A flattened list of the items." + items: [Foo] } "The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`."