We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fd07ab commit ff0011cCopy full SHA for ff0011c
backend/.env.development
@@ -1,3 +1,3 @@
1
-PORT=3000
+PORT=8080
2
JWT_SECRET="JACKSONCHENNAHEULALLEN"
3
SALT_ROUNDS=123
frontend/schema.gql
@@ -52,6 +52,10 @@ type Menu {
52
permission: String!
53
}
54
55
+type ModelTags {
56
+ tags: [String!]!
57
+}
58
+
59
type Mutation {
60
deleteProject(projectId: String!): Boolean!
61
login(input: LoginUserInput!): LoginResponse!
@@ -88,6 +92,7 @@ type Query {
88
92
getProjectDetails(projectId: String!): Projects!
89
93
getUserProjects: [Projects!]!
90
94
logout: Boolean!
95
+ modelTags: ModelTags!
91
96
97
98
input RegisterUserInput {
0 commit comments