Skip to content

Commit

Permalink
Update snapshot via --snapshot-update command
Browse files Browse the repository at this point in the history
Signed-off-by: Kwong Tung Nan <[email protected]>
  • Loading branch information
kwongtn committed Jan 2, 2025
1 parent 6b9a1d0 commit 8ccd07e
Showing 1 changed file with 82 additions and 82 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,88 @@ The `ID` scalar type represents a unique identifier, often used to refetch an ob
"""
scalar GlobalID @specifiedBy(url: "https://relay.dev/graphql/objectidentification.htm")

"""An object with a Globally Unique ID"""
interface Node {
"""The Globally Unique ID of this object"""
id: GlobalID!
}

"""Information to aid in pagination."""
type PageInfo {
"""When paginating forwards, are there more items?"""
hasNextPage: Boolean!

"""When paginating backwards, are there more items?"""
hasPreviousPage: Boolean!

"""When paginating backwards, the cursor to continue."""
startCursor: String

"""When paginating forwards, the cursor to continue."""
endCursor: String
}

type Query {
booksConn(
filters: TreeNodeBookFilter
order: TreeNodeBookOrder

"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeBookTypeConnection!
booksConn2(
filters: TreeNodeBookFilter
order: TreeNodeBookOrder

"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeBookTypeConnection!
authorsConn(
"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeAuthorTypeConnection!
authorsConn2(
"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeAuthorTypeConnection!
}

type TreeNodeAuthorType implements Node {
"""The Globally Unique ID of this object"""
id: GlobalID!
Expand Down Expand Up @@ -97,86 +179,4 @@ type TreeNodeBookTypeEdge {

"""The item at the end of the edge"""
node: TreeNodeBookType!
}

"""An object with a Globally Unique ID"""
interface Node {
"""The Globally Unique ID of this object"""
id: GlobalID!
}

"""Information to aid in pagination."""
type PageInfo {
"""When paginating forwards, are there more items?"""
hasNextPage: Boolean!

"""When paginating backwards, are there more items?"""
hasPreviousPage: Boolean!

"""When paginating backwards, the cursor to continue."""
startCursor: String

"""When paginating forwards, the cursor to continue."""
endCursor: String
}

type Query {
booksConn(
filters: TreeNodeBookFilter
order: TreeNodeBookOrder

"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeBookTypeConnection!
booksConn2(
filters: TreeNodeBookFilter
order: TreeNodeBookOrder

"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeBookTypeConnection!
authorsConn(
"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeAuthorTypeConnection!
authorsConn2(
"""Returns the items in the list that come before the specified cursor."""
before: String = null

"""Returns the items in the list that come after the specified cursor."""
after: String = null

"""Returns the first n items from the list."""
first: Int = null

"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): TreeNodeAuthorTypeConnection!
}

0 comments on commit 8ccd07e

Please sign in to comment.