Skip to content
Closed
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
26 changes: 13 additions & 13 deletions entgql/internal/todo/ent.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ type Category implements Node {
id: ID!
text: String!
status: CategoryStatus!
config: CategoryConfig
types: CategoryTypes
duration: Duration
count: Uint64
strings: [String!] @deprecated(reason: "use `string` instead")
config: CategoryConfig!
types: CategoryTypes!
duration: Duration!
count: Uint64!
strings: [String!]! @deprecated(reason: "use `string` instead")
todos(
"""
Returns the elements in the list that come after the specified cursor.
Expand Down Expand Up @@ -534,7 +534,7 @@ interface Node @goModel(model: "entgo.io/contrib/entgql/internal/todo/ent.Noder"
type OneToMany implements Node {
id: ID!
name: String!
field2: String
field2: String!
parent: OneToMany
children: [OneToMany!]
}
Expand Down Expand Up @@ -969,12 +969,12 @@ type Todo implements Node {
status: TodoStatus!
priorityOrder: Int! @goField(name: "Priority", forceResolver: false)
text: String!
categoryID: ID
category_id: ID
categoryX: ID @goField(name: "CategoryID", forceResolver: false)
init: Map
custom: [Custom!]
customp: [Custom]
categoryID: ID!
category_id: ID!
categoryX: ID! @goField(name: "CategoryID", forceResolver: false)
init: Map!
custom: [Custom!]!
customp: [Custom]!
value: Int!
parent: Todo
children(
Expand Down Expand Up @@ -1254,7 +1254,7 @@ type User implements Node {
name: String!
username: UUID!
requiredMetadata: Map!
metadata: Map
metadata: Map!
groups(
"""
Returns the elements in the list that come after the specified cursor.
Expand Down
Loading
Loading