You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
925 B
43 lines
925 B
# A File contains information about a file and where to download it.
|
|
type File {
|
|
# The file's unique ID
|
|
id: String!
|
|
|
|
# The kind of file. Most will be "upload", but some that are ported from the wiki will have other values for this.
|
|
kind: String!
|
|
|
|
# The time of uploading
|
|
time: String!
|
|
|
|
# Whether the file is publicly listable. Someone with knowledge of the ID
|
|
# will still be able to view it, however.
|
|
public: Boolean!
|
|
|
|
# The file's name
|
|
name: String!
|
|
|
|
# The MIME type of the file
|
|
mimeType: String!
|
|
|
|
# The file's size in bytes
|
|
size: Int!
|
|
|
|
# The uploader
|
|
author: String!
|
|
|
|
# The URL where the file is hosted
|
|
url: String
|
|
}
|
|
|
|
# Input for editFile mutation
|
|
input EditFileInput {
|
|
# The file's unique ID
|
|
id: String!
|
|
|
|
# Whether the file is publicly listable. Someone with knowledge of the ID
|
|
# will still be able to view it, however.
|
|
public: Boolean
|
|
|
|
# The file's name
|
|
name: String
|
|
}
|