I am having a JSON script and I want to add a variable value into it using f-string in python but I was unable to do it.
name = "harsha"
query = """mutation {
createUsers(input:{
user_name: f"{name}"
})
{
users{
user_name
}
}
}
"""
when i am printing query i am getting the same value not the change value
harsha