我目前正在使用 sanic-graphql,但我似乎根本无法运行 URL 重定向。
from sanic import response
class CreateSample( Mutation ):
class Arguments:
input = SampleInputType()
Output = SampleSchema
async def mutate( self, info, input ):
return response.redirect( 'https://www.google.com' )
但似乎库的逻辑是始终尝试返回包装在输出类型中的返回值。
有什么方法可以触发正常的 URL 重定向?