This mutation allows the uploads of assets.
Arguments
Name | Type | Description | Required |
---|---|---|---|
| UUID | The upload asset organization ID. | Yes |
| Scalar | The asset file. | Yes |
| String | The asset name. | Yes |
Returns
Name | Type | Description |
---|---|---|
N/A | String | The value of the uploaded asset. |
Mutation Schema
type mutation{
uploadAsset(orgId: UUID1! file: Upload! name: String!): String!
}