b409a5583d
Add vue cli typescript support Rename .js to .ts Use class and annotations in App and NavBar Add tslint
11 lines
182 B
TypeScript
11 lines
182 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const UPLOAD_PICTURE = gql`
|
|
mutation {
|
|
uploadPicture(file: "file") {
|
|
url,
|
|
url_thumbnail
|
|
}
|
|
}
|
|
`;
|