Skip to content

Commit

Permalink
Fixed Snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed May 11, 2022
1 parent 5a368d4 commit 82c4f46
Showing 1 changed file with 8 additions and 6 deletions.
Expand Up @@ -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`."
Expand Down

0 comments on commit 82c4f46

Please sign in to comment.