Christian Genco
03/28/2018, 7:09 PMproject_id
?
ie: I can post a 300MB file to your <https://api.graph.cool/file/v1/__PROJECT_ID__>
and get back a public URL to that file, and I can do that until you get your next graph.cool bill and delete my filesFitch
03/28/2018, 7:10 PMChristian Genco
03/28/2018, 7:11 PMFitch
03/28/2018, 7:12 PMFitch
03/28/2018, 7:12 PMFitch
03/28/2018, 7:12 PMChristian Genco
03/28/2018, 7:13 PMChristian Genco
03/28/2018, 7:15 PMFitch
03/28/2018, 7:16 PMenum UserRole {
EDITOR,
MODERATOR,
ADMIN
}
Fitch
03/28/2018, 7:17 PMFitch
03/28/2018, 7:18 PMisOwner(
type: String!
nodeId: ID!
): isOwnerPayload
Fitch
03/28/2018, 7:19 PMChristian Genco
03/28/2018, 7:27 PMoperation: File.upload
?Fitch
03/28/2018, 7:34 PMtype File @model {
contentType: String!
createdAt: DateTime!
id: ID! @isUnique
name: String!
secret: String! @isUnique
size: Int!
updatedAt: DateTime!
url: String! @isUnique
}
Fitch
03/28/2018, 7:35 PMFitch
03/28/2018, 7:37 PMChristian Genco
03/28/2018, 7:39 PMcurl -X POST '<https://api.graph.cool/file/v1/cjf9wgjgy0fad01911uz14rrs>' -F "data=@example.png;filename=test.png" 14:22:58
{
"secret": "cjfbhuxtx09sb0146ryq88sq8",
"name": "test.png",
"size": 70991,
"url": "<https://files.graph.cool/cjf9wgjgy0fad01911uz14rrs/cjfbhuxtx09sb0146ryq88sq8>",
"id": "cjfbhuyn709sc0146rj6vwa4h",
"contentType": "image/png"
}
Christian Genco
03/28/2018, 7:40 PMFitch
03/28/2018, 9:04 PMFitch
03/28/2018, 9:04 PMChristian Genco
03/28/2018, 9:11 PMFitch
03/28/2018, 9:28 PMFitch
03/28/2018, 9:30 PMFitch
03/28/2018, 9:35 PMhttps://s3-us-west-2.amazonaws.com/vyrl-assets/permissions.png▾
Christian Genco
03/29/2018, 12:07 AM- operation: File.create
authenticated: true
- operation: File.read
authenticated: true
- operation: File.update
authenticated: true
- operation: File.delete
authenticated: true
And I can still do this:
$ curl -X POST '<https://api.graph.cool/file/v1/cjf9wgjgy0fad01911uz14rrs>' -F "data=@example.png;filename=test.png"
{
"secret": "cjfbrdm8009xo014678l1snem",
"name": "test.png",
"size": 70991,
"url": "<https://files.graph.cool/cjf9wgjgy0fad01911uz14rrs/cjfbrdm8009xo014678l1snem>",
"id": "cjfbrdn3n09xp01469vf6vro8",
"contentType": "image/png"
}
Fitch
03/29/2018, 12:40 AM