api/graph: add missing non-null types

Entries of the list cannot be null.
This commit is contained in:
Simon Ser 2022-01-10 15:34:47 +00:00 committed by Drew DeVault
parent 4674be77d9
commit e369a0723e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ type Paste {
id: String!
created: Time!
visibility: Visibility!
files: [File]!
files: [File!]!
user: Entity! @access(scope: PROFILE, kind: RO)
}