Add workspace members (#536)
* Add workspace members * Remove workspace provider * Lint
This commit is contained in:
12
front/src/modules/workspace/queries/update.ts
Normal file
12
front/src/modules/workspace/queries/update.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const UPDATE_WORKSPACE = gql`
|
||||
mutation UpdateWorkspace($data: WorkspaceUpdateInput!) {
|
||||
updateWorkspace(data: $data) {
|
||||
id
|
||||
domainName
|
||||
displayName
|
||||
logo
|
||||
}
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user