Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions entgql/internal/todo/ent.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ type CategoryConnection {
"""
edges: [CategoryEdge]
"""
A list of nodes.
"""
nodes: [Category]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
Expand Down Expand Up @@ -358,6 +362,10 @@ type FriendshipConnection {
"""
edges: [FriendshipEdge]
"""
A list of nodes.
"""
nodes: [Friendship]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
Expand Down Expand Up @@ -454,6 +462,10 @@ type GroupConnection {
"""
edges: [GroupEdge]
"""
A list of nodes.
"""
nodes: [Group]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
Expand Down Expand Up @@ -546,6 +558,10 @@ type OneToManyConnection {
"""
edges: [OneToManyEdge]
"""
A list of nodes.
"""
nodes: [OneToMany]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
Expand Down Expand Up @@ -1017,6 +1033,10 @@ type TodoConnection {
"""
edges: [TodoEdge]
"""
A list of nodes.
"""
nodes: [Todo]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
Expand Down Expand Up @@ -1334,6 +1354,10 @@ type UserConnection {
"""
edges: [UserEdge]
"""
A list of nodes.
"""
nodes: [User]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
Expand Down
Loading