fix graphql errors in notifications

This commit is contained in:
k00b 2025-02-14 15:10:15 -06:00
parent 87b5bb80fd
commit f4040756b3
3 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ export default gql`
remote: Boolean
sub: Sub
subName: String
status: String
status: String!
uploadId: Int
otsHash: String
parentOtsHash: String

View File

@ -31,7 +31,7 @@ export default gql`
}
type Sub {
name: ID!
name: String!
createdAt: Date!
userId: Int!
user: User!

View File

@ -49,7 +49,7 @@ export default gql`
type User {
id: ID!
createdAt: Date!
name: String
name: String!
nitems(when: String, from: String, to: String): Int!
nposts(when: String, from: String, to: String): Int!
nterritories(when: String, from: String, to: String): Int!