24e5132029
* Moving queries into dedicated files * fix ci
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const REMOVE_WORKSPACE_LOGO = gql`
|
|
mutation RemoveWorkspaceLogo {
|
|
updateWorkspace(data: { logo: null }) {
|
|
id
|
|
}
|
|
}
|
|
`;
|