Last active
December 28, 2017 22:54
-
-
Save maticzav/a412628851329d7ef70c6b1c509add32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# database/datamodel/types.graphql | |
type File { | |
id: ID! @unique | |
name: String! | |
size: Int! | |
secret: String! @unique | |
contentType: String! | |
createdAt: DateTime! | |
updatedAt: DateTime! | |
url: String! @unique | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment