Peyton Runyan
01/28/2021, 2:14 PMprefect server start --use-volume
then navigate to <http://0.0.0.0:4200/>
to access the graphql gui, and then input
mutation {
set_secret(input: { name: "app_pw", value: "values_of_password" }) {
success
}
}
per this documentation https://docs.prefect.io/orchestration/concepts/secrets.html#graphql
and I get back an error
{
"error": {
"errors": [
{
"message": "Cannot query field \"set_secret\" on type \"Mutation\".",
"locations": [
{
"line": 2,
"column": 3
}
],
"extensions": {
"code": "GRAPHQL_VALIDATION_FAILED"
}
}
]
}
}
I get a similar error trying
query {
secret(order_by: { name: asc }) {
name
}
}
Jeremiah