Skip to content

Commit 7e55673

Browse files
committed
fix: update nullable fields in chat models and improve stream handling logic
1 parent a4267d4 commit 7e55673

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

frontend/src/graphql/schema.gql

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ input CreateProjectInput {
6060
public: Boolean
6161
}
6262

63-
"""
64-
Date custom scalar type
65-
"""
63+
"""Date custom scalar type"""
6664
scalar Date
6765

6866
type EmailConfirmationResponse {
@@ -160,9 +158,7 @@ type Project {
160158
projectPath: String!
161159
subNumber: Float!
162160

163-
"""
164-
Projects that are copies of this project
165-
"""
161+
"""Projects that are copies of this project"""
166162
subscribers: [Project!]
167163
uniqueProjectId: String!
168164
updatedAt: Date!
@@ -246,9 +242,7 @@ input UpdateProjectPhotoInput {
246242
projectId: ID!
247243
}
248244

249-
"""
250-
The `Upload` scalar type represents a file upload.
251-
"""
245+
"""The `Upload` scalar type represents a file upload."""
252246
scalar Upload
253247

254248
type User {
@@ -263,8 +257,7 @@ type User {
263257
isEmailConfirmed: Boolean!
264258
lastEmailSendTime: Date!
265259
projects: [Project!]!
266-
subscribedProjects: [Project!]
267-
@deprecated(reason: "Use projects with forkedFromId instead")
260+
subscribedProjects: [Project!] @deprecated(reason: "Use projects with forkedFromId instead")
268261
updatedAt: Date!
269262
username: String!
270-
}
263+
}

0 commit comments

Comments
 (0)