12 lines
253 B
JavaScript
12 lines
253 B
JavaScript
import { gql } from '@apollo/client';
|
|
export const UPDATE_APP_AUTH_CLIENT = gql`
|
|
mutation UpdateAppAuthClient($input: UpdateAppAuthClientInput) {
|
|
updateAppAuthClient(input: $input) {
|
|
id
|
|
appConfigId
|
|
name
|
|
active
|
|
}
|
|
}
|
|
`;
|