1b150e1da6
Frontend for https://github.com/twentyhq/core-team-issues/issues/293 POC - https://github.com/twentyhq/twenty/pull/9903 --------- Co-authored-by: Félix Malfait <felix@twenty.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
30 lines
548 B
TypeScript
30 lines
548 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const GET_ENVIRONMENT_VARIABLES_GROUPED = gql`
|
|
query GetEnvironmentVariablesGrouped {
|
|
getEnvironmentVariablesGrouped {
|
|
groups {
|
|
name
|
|
description
|
|
isHiddenOnLoad
|
|
variables {
|
|
name
|
|
description
|
|
value
|
|
sensitive
|
|
}
|
|
subgroups {
|
|
name
|
|
description
|
|
variables {
|
|
name
|
|
description
|
|
value
|
|
sensitive
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|