I tried to work on the bare graphql-spqr but this spring-boot-starter seems to offer stuff that I wanted to use like support for reactive endpoints.
But it only offers a single /graphql endpoint. What I want is something like /admin/graphql and /customer/graphql. Can you help me create a multiple GraphQLSchemaGenerator with bean qualifier so that I can attach it to a controller? Or maybe something like an additional parameter to @GraphQLAPI endpoint where I can specify which endpoint it will belongs to?
I wanted to have a separate endpoint so the introspection won't expose admin and other unnecessary graphql commands.
I tried to work on the bare graphql-spqr but this spring-boot-starter seems to offer stuff that I wanted to use like support for reactive endpoints.
But it only offers a single
/graphqlendpoint. What I want is something like/admin/graphqland/customer/graphql. Can you help me create a multipleGraphQLSchemaGeneratorwith bean qualifier so that I can attach it to a controller? Or maybe something like an additional parameter to @GraphQLAPI endpoint where I can specify which endpoint it will belongs to?I wanted to have a separate endpoint so the introspection won't expose admin and other unnecessary graphql commands.