Mislabeled var name in the docs for updating Lambdas

Small error in the docs here:
https://dgraph.io/docs/cloud/cloud-api/lambda/#api-command-2

The variables to update the lambdas are labeled as lambdaLogsInput when it should be updateDeploymentInput.

mutation UpdateDeployment($lambdaLogsInput: UpdateDeploymentInput!) {
    updateDeployment(input: $lambdaLogsInput)
}

should be:

mutation UpdateDeployment($updateDeploymentInput: UpdateDeploymentInput!) {
    updateDeployment(input: $updateDeploymentInput)
}

Feel free to open a PR.

Let me ping @docs

Pinging @qa-team. The api as related docs for api should be tested out.

Here’s a PR that fixes the variable name:
https://github.com/dgraph-io/cloud-docs/pull/51