Task: Upgraded the dgs graphql to submodules and parent modules for extends projects

This commit is contained in:
2021-08-08 12:33:34 +07:00
parent 83477a9946
commit 32f356569d
39 changed files with 170 additions and 58 deletions

View File

@@ -0,0 +1,14 @@
type User {
id: ID
code: String
username: String
name: String
enabled: Boolean
}
input UserInput {
username: String
password: String
name: String
enabled: Boolean
}