phx-node-test-1
Version:
PHX NODE
17 lines • 430 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GET_LIST_HOSTNAME_QUERY = void 0;
exports.GET_LIST_HOSTNAME_QUERY = `
query getListHostname($environment: String!) {
grpc_configs(
where: {
deleted_at: { _is_null: true }
environment: { _eq: $environment }
}
) {
hostname
environment_variable_public
}
}
`;
//# sourceMappingURL=query.js.map