Feature request: multiple lambda servers

Hello,
I would like to use many lambdas to split my backend logic to many modules (for cases when this backend logic is too big, can be modularized and/or written by different developers/teams).

Currently, to use lambda, you have to use --graphql “lambda-url=URL;” option, pointing to just one URL, even if @custom supports different URLs.

One way to allow this would be to extend @lambda syntax like in @custom:

type Mutation {
    myCustomMutation(...): MutationResult @lambda(http: {
			url: "http://lambda2/graphql-worker",
})

What do you think?

1 Like

@miko we have added it to list of future improvement for product. We will keep you posted on the progress for it. :slight_smile:

2 Likes