Unexpected error: ClientError('400 Client Error: B...
# prefect-community
n
Unexpected error: ClientError('400 Client Error: Bad Request for url: https://api.prefect.io/graphql\n\nThe following error messages were provided by the GraphQL server:\n\n INTERNAL_SERVER_ERROR: Variable "$name" of non-null type "String!" must not be\n null.\n\nThe GraphQL query was:\n\n query($name: String!) {\n secret_value(name: $name)\n }\n\nThe passed variables were:\n\n {"name": null}\n') Any clues?
j
Hi Naga, your graphql schema is expecting a non null, string value for the name that is being passed in
n
yes found the issue . the secret is having input as null value. Thanks
👍 1