@omnigraph/odata
Version:
415 lines (414 loc) • 16.8 kB
JavaScript
import { DirectiveLocation, GraphQLBoolean, GraphQLDirective, GraphQLList, GraphQLNonNull, GraphQLScalarType, GraphQLString, } from 'graphql';
import { process } from '@graphql-mesh/cross-helpers';
import { getInterpolatedHeadersFactory, stringInterpolator, } from '@graphql-mesh/string-interpolation';
import { getDirectiveExtensions, MapperKind, mapSchema } from '@graphql-tools/utils';
import { getDataloaderFactory } from './getDataloaderFactory.js';
import { createAbstractTypeResolver } from './resolvers/abstractTypeResolver.js';
import { createBoundActionResolver } from './resolvers/boundActionResolver.js';
import { createBoundFunctionResolver } from './resolvers/boundFunctionResolver.js';
import { createCreateEntitySetResolver } from './resolvers/createEntitySetResolver.js';
import { createDeleteEntitySetByIdentifierResolver } from './resolvers/deleteEntitySetByIdentifierResolver.js';
import { createEntitySetByIdentifierResolver } from './resolvers/entitySetByIdentifierResolver.js';
import { createEntitySetCountResolver } from './resolvers/entitySetCountResolver.js';
import { createEntitySetResolver } from './resolvers/entitySetResolver.js';
import { createNavPropResolver } from './resolvers/navPropResolver.js';
import { rootResolver } from './resolvers/rootResolver.js';
import { createSingletonResolver } from './resolvers/singletonResolver.js';
import { createSingularNavResolver } from './resolvers/singularNavResolver.js';
import { createUnboundActionResolver } from './resolvers/unboundActionResolver.js';
import { createUnboundFunctionResolver } from './resolvers/unboundFunction.js';
import { createUpdateEntitySetResolver } from './resolvers/updateEntitySetResolver.js';
export const EntityInfoDirective = new GraphQLDirective({
name: 'entityInfo',
args: {
actualFields: {
type: new GraphQLList(GraphQLString),
},
navigationFields: {
type: new GraphQLList(GraphQLString),
},
identifierFieldName: {
type: GraphQLString,
},
identifierFieldTypeRef: {
type: GraphQLString,
},
isOpenType: {
type: GraphQLBoolean,
},
},
locations: [DirectiveLocation.OBJECT, DirectiveLocation.INTERFACE],
});
export const SingularNavDirective = new GraphQLDirective({
name: 'singularNav',
args: {
navigationPropertyName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const PluralNavDirective = new GraphQLDirective({
name: 'pluralNav',
args: {
navigationPropertyName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const NavPropDirective = new GraphQLDirective({
name: 'navProp',
args: {
navigationPropertyName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const ResolveRootDirective = new GraphQLDirective({
name: 'resolveRoot',
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const UnboundFunctionDirective = new GraphQLDirective({
name: 'unboundFunction',
args: {
functionName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const BoundFunctionDirective = new GraphQLDirective({
name: 'boundFunction',
args: {
functionRef: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const UnboundActionDirective = new GraphQLDirective({
name: 'unboundAction',
args: {
actionName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const BoundActionDirective = new GraphQLDirective({
name: 'boundAction',
args: {
actionRef: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const SingletonDirective = new GraphQLDirective({
name: 'singleton',
args: {
singletonName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const EntitySetDirective = new GraphQLDirective({
name: 'entitySet',
args: {
entitySetName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const EntitySetByIdentifierDirective = new GraphQLDirective({
name: 'entitySetByIdentifier',
args: {
entitySetName: {
type: GraphQLString,
},
identifierFieldName: {
type: GraphQLString,
},
identifierFieldTypeRef: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const EntitySetCountDirective = new GraphQLDirective({
name: 'entitySetCount',
args: {
entitySetName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const CreateEntitySetDirective = new GraphQLDirective({
name: 'createEntitySet',
args: {
entitySetName: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const DeleteEntitySetDirective = new GraphQLDirective({
name: 'deleteEntitySet',
args: {
entitySetName: {
type: GraphQLString,
},
identifierFieldName: {
type: GraphQLString,
},
identifierFieldTypeRef: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const UpdateEntitySetDirective = new GraphQLDirective({
name: 'updateEntitySet',
args: {
entitySetName: {
type: GraphQLString,
},
identifierFieldName: {
type: GraphQLString,
},
identifierFieldTypeRef: {
type: GraphQLString,
},
},
locations: [DirectiveLocation.FIELD_DEFINITION],
});
export const AbstractTypeDirective = new GraphQLDirective({
name: 'abstractType',
args: {
entityTypeName: {
type: GraphQLString,
},
isAbstract: {
type: GraphQLBoolean,
},
aliasNamespaceMap: {
type: new GraphQLList(new GraphQLList(GraphQLString)),
},
multipleSchemas: {
type: GraphQLBoolean,
},
namespaces: {
type: new GraphQLList(GraphQLString),
},
},
locations: [DirectiveLocation.INTERFACE, DirectiveLocation.OBJECT],
});
export const TransportDirective = new GraphQLDirective({
name: 'transport',
isRepeatable: true,
locations: [DirectiveLocation.SCHEMA],
args: {
kind: { type: new GraphQLNonNull(GraphQLString) },
subgraph: { type: new GraphQLNonNull(GraphQLString) },
location: { type: new GraphQLNonNull(GraphQLString) },
headers: { type: new GraphQLList(new GraphQLList(GraphQLString)) },
options: { type: new GraphQLScalarType({ name: 'TransportOptions' }) },
},
});
export function processDirectives({ schema, fetchFn }) {
const schemaLevelDirectives = getDirectiveExtensions(schema);
const transportDirective = schemaLevelDirectives?.transport?.[0];
if (!transportDirective) {
throw new Error('Missing transport directive');
}
const operationHeaders = Array.isArray(transportDirective.headers)
? Object.fromEntries(transportDirective.headers)
: transportDirective.headers;
const origHeadersFactory = getInterpolatedHeadersFactory(operationHeaders);
const headersFactory = (resolverData, method) => {
const headers = origHeadersFactory(resolverData);
if (headers.accept == null) {
headers.accept = 'application/json';
}
if (headers['content-type'] == null && method !== 'GET') {
headers['content-type'] = 'application/json';
}
return headers;
};
const endpoint = stringInterpolator.parse(transportDirective.location, {
env: process.env,
});
const dataloaderFactory = getDataloaderFactory({
endpoint,
fetchFn,
headersFactory,
batchMode: transportDirective.options?.batch || 'none',
});
return mapSchema(schema, {
[MapperKind.ABSTRACT_TYPE]: type => {
const typeDirectives = getDirectiveExtensions(type);
const abstractTypeDirectives = typeDirectives?.abstractType;
if (abstractTypeDirectives?.length) {
const abstractTypeDirective = abstractTypeDirectives[0];
const typePrototype = Object.getPrototypeOf(type);
return new typePrototype.constructor({
...type.toConfig(),
resolveType: createAbstractTypeResolver({
entityTypeName: abstractTypeDirective.entityTypeName,
isAbstract: abstractTypeDirective.isAbstract,
aliasNamespaceMap: new Map(abstractTypeDirective.aliasNamespaceMap),
multipleSchemas: abstractTypeDirective.multipleSchemas,
namespaces: new Set(abstractTypeDirective.namespaces),
}),
});
}
},
[MapperKind.COMPOSITE_FIELD]: fieldConfig => {
const fieldDirectives = getDirectiveExtensions(fieldConfig);
if (fieldDirectives?.boundAction?.length) {
const boundActionDirective = fieldDirectives.boundAction[0];
fieldConfig.resolve = createBoundActionResolver({
actionRef: boundActionDirective.actionRef,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.boundFunction?.length) {
const boundFunctionDirective = fieldDirectives.boundFunction[0];
fieldConfig.resolve = createBoundFunctionResolver({
functionRef: boundFunctionDirective.functionRef,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.createEntitySet?.length) {
const createEntitySetDirective = fieldDirectives.createEntitySet[0];
fieldConfig.resolve = createCreateEntitySetResolver({
endpoint,
entitySetName: createEntitySetDirective.entitySetName,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.deleteEntitySet?.length) {
const deleteEntitySetDirective = fieldDirectives.deleteEntitySet[0];
fieldConfig.resolve = createDeleteEntitySetByIdentifierResolver({
endpoint,
entitySetName: deleteEntitySetDirective.entitySetName,
identifierFieldName: deleteEntitySetDirective.identifierFieldName,
identifierFieldTypeRef: deleteEntitySetDirective.identifierFieldTypeRef,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.entitySetByIdentifier?.length) {
const entitySetByIdentifierDirective = fieldDirectives.entitySetByIdentifier[0];
fieldConfig.resolve = createEntitySetByIdentifierResolver({
endpoint,
entitySetName: entitySetByIdentifierDirective.entitySetName,
identifierFieldName: entitySetByIdentifierDirective.identifierFieldName,
identifierFieldTypeRef: entitySetByIdentifierDirective.identifierFieldTypeRef,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.entitySetCount?.length) {
const entitySetCountDirective = fieldDirectives.entitySetCount[0];
fieldConfig.resolve = createEntitySetCountResolver({
endpoint,
entitySetName: entitySetCountDirective.entitySetName,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.entitySet?.length) {
const entitySetDirective = fieldDirectives.entitySet[0];
fieldConfig.resolve = createEntitySetResolver({
endpoint,
entitySetName: entitySetDirective.entitySetName,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.navProp?.length) {
const navPropDirective = fieldDirectives.navProp[0];
fieldConfig.resolve = createNavPropResolver({
navigationPropertyName: navPropDirective.navigationPropertyName,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.pluralNav?.length) {
const pluralNavDirective = fieldDirectives.pluralNav[0];
fieldConfig.resolve = createNavPropResolver({
navigationPropertyName: pluralNavDirective.navigationPropertyName,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.resolveRoot?.length) {
fieldConfig.resolve = rootResolver;
}
else if (fieldDirectives?.singleton?.length) {
const singletonDirective = fieldDirectives.singleton[0];
fieldConfig.resolve = createSingletonResolver({
singletonName: singletonDirective.singletonName,
endpoint,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.singularNav?.length) {
const singularNavDirective = fieldDirectives.singularNav[0];
fieldConfig.resolve = createSingularNavResolver({
navigationPropertyName: singularNavDirective.navigationPropertyName,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.unboundAction?.length) {
const unboundActionDirective = fieldDirectives.unboundAction[0];
fieldConfig.resolve = createUnboundActionResolver({
actionName: unboundActionDirective.actionName,
endpoint,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.unboundFunction?.length) {
const unboundFunctionDirective = fieldDirectives.unboundFunction[0];
fieldConfig.resolve = createUnboundFunctionResolver({
functionName: unboundFunctionDirective.functionName,
endpoint,
expandNavProps: transportDirective.options?.expandNavProps,
dataloaderFactory,
headersFactory,
});
}
else if (fieldDirectives?.updateEntitySet?.length) {
const updateEntitySetDirective = fieldDirectives.updateEntitySet[0];
fieldConfig.resolve = createUpdateEntitySetResolver({
endpoint,
entitySetName: updateEntitySetDirective.entitySetName,
identifierFieldName: updateEntitySetDirective.identifierFieldName,
identifierFieldTypeRef: updateEntitySetDirective.identifierFieldTypeRef,
dataloaderFactory,
headersFactory,
});
}
return fieldConfig;
},
});
}