Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/@apollo/federation/dist/service/ drwxr-xr-x | |
| Viewing file: Select action/file-type: "use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.buildFederatedSchema = void 0;
const graphql_1 = require("graphql");
const apollo_graphql_1 = require("apollo-graphql");
const directives_1 = __importStar(require("../directives"));
const types_1 = require("../types");
const printFederatedSchema_1 = require("./printFederatedSchema");
require("apollo-server-env");
function buildFederatedSchema(modulesOrSDL) {
let shapedModulesOrSDL;
if ('typeDefs' in modulesOrSDL) {
const { typeDefs, resolvers } = modulesOrSDL;
const augmentedTypeDefs = Array.isArray(typeDefs) ? typeDefs : [typeDefs];
shapedModulesOrSDL = augmentedTypeDefs.map((typeDefs, i) => {
const module = { typeDefs };
if (i === 0 && resolvers)
module.resolvers = resolvers;
return module;
});
}
else {
shapedModulesOrSDL = modulesOrSDL;
}
const modules = apollo_graphql_1.modulesFromSDL(shapedModulesOrSDL);
let schema = apollo_graphql_1.buildSchemaFromSDL(modules, new graphql_1.GraphQLSchema({
query: undefined,
directives: [...graphql_1.specifiedDirectives, ...directives_1.default],
}));
const sdl = printFederatedSchema_1.printSchema(schema);
if (!schema.getQueryType()) {
schema = new graphql_1.GraphQLSchema(Object.assign(Object.assign({}, schema.toConfig()), { query: new graphql_1.GraphQLObjectType({
name: 'Query',
fields: {},
}) }));
}
const entityTypes = Object.values(schema.getTypeMap()).filter(type => graphql_1.isObjectType(type) && directives_1.typeIncludesDirective(type, 'key'));
const hasEntities = entityTypes.length > 0;
schema = apollo_graphql_1.transformSchema(schema, type => {
if (graphql_1.isObjectType(type) && type === schema.getQueryType()) {
const config = type.toConfig();
return new graphql_1.GraphQLObjectType(Object.assign(Object.assign({}, config), { fields: Object.assign(Object.assign(Object.assign({}, (hasEntities && { _entities: types_1.entitiesField })), { _service: Object.assign(Object.assign({}, types_1.serviceField), { resolve: () => ({ sdl }) }) }), config.fields) }));
}
return undefined;
});
schema = apollo_graphql_1.transformSchema(schema, type => {
if (hasEntities && graphql_1.isUnionType(type) && type.name === types_1.EntityType.name) {
return new graphql_1.GraphQLUnionType(Object.assign(Object.assign({}, types_1.EntityType.toConfig()), { types: entityTypes.filter(graphql_1.isObjectType) }));
}
return undefined;
});
for (const module of modules) {
if (!module.resolvers)
continue;
apollo_graphql_1.addResolversToSchema(schema, module.resolvers);
}
return schema;
}
exports.buildFederatedSchema = buildFederatedSchema;
//# sourceMappingURL=buildFederatedSchema.js.map |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.1166 ]-- |