Итак, у меня есть две схемы
Схема1
type Permission {
relation: Relation
}
enum Relation {
ONE
TWO
THREE
}
Схема2
type Permission {
relation: Relation
}
enum Relation {
FOUR
FIVE
SIX
}
Ожидаемый результат примерно такой: (но я открыт дляразличные идеи) Запросы, которые я хотел бы сделать после слияния:
{
permissions{
relation
}
}
и получить результат, подобный
"permissions": [
{
"relation": "ONE"
},
{
"relation": "SIX"
}
]
или
"permissions": [
{
"relation": "schema1ONE"
},
{
"relation": "schema2SIX"
}
]
И мутациинапример:
mutation{
createPermission(
relation: ONE
){
relation
}
}
mutation{
createPermission(
relation: SIX
){
relation
}
}
или
mutation{
createPermission(
relation: schema1ONE
){
relation
}
}
mutation{
createPermission(
relation: schema2SIX
){
relation
}
}
Я пытаюсь использовать функцию transformSchema
на инструментах graphql, но не могу понять это правильно:
const Schema1 = await getRemoteSchema('schema1_url', 'schema1');
const Schema2 = await getRemoteSchema('schema2_url', 'schema2');
const schemas = [Schema1, Schema2]
const schema = mergeSchemas({
schemas: schemas,
resolvers: {}
});
определение getRemoteSchema
export const getRemoteSchema = async (uri: string, schemaName: string): Promise<GraphQLSchema> => {
const httpLink = new HttpLink({ uri, fetch });
const schema = await introspectSchema(httpLink);
const executableSchema = makeRemoteExecutableSchema({
schema,
httpLink,
});
// transform schema by renaming root fields and types
const renamedSchema = transformSchema(
executableSchema,
[
new RenameTypes(name => {
if (name == 'Relation') {
return schemaName + name
} else {
return name
}
}),
// new RenameRootFields((operation, name) => `${schemaName}_${name}`)
]
);
return renamedSchema;
}
Я сделал этот глюк https://glitch.com/edit/#!/schema-stitching-conflict Так что легче увидеть проблему.