https://prefect.io logo
n

Naga Sravika Bodapati

06/29/2022, 12:41 PM
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

James Sopkin

06/29/2022, 1:53 PM
Hi Naga, your graphql schema is expecting a non null, string value for the name that is being passed in
n

Naga Sravika Bodapati

06/29/2022, 2:35 PM
yes found the issue . the secret is having input as null value. Thanks
👍 1
5 Views