c9457fe0d3
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
19 lines
341 B
TypeScript
19 lines
341 B
TypeScript
import gql from "graphql-tag";
|
|
|
|
export const UPLOAD_MEDIA = gql`
|
|
mutation UploadMedia($file: Upload!, $alt: String, $name: String!) {
|
|
uploadMedia(file: $file, alt: $alt, name: $name) {
|
|
url
|
|
id
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const REMOVE_MEDIA = gql`
|
|
mutation RemoveMedia($id: ID!) {
|
|
removeMedia(id: $id) {
|
|
id
|
|
}
|
|
}
|
|
`;
|