langchain_community.utilities.graphql.GraphQLAPIWrapper

class langchain_community.utilities.graphql.GraphQLAPIWrapper[source]

基类: BaseModel

封装GraphQL API。

使用前,您需要安装gql Python 包。这个包装器将使用 GraphQL API 进行查询。

通过解析和验证从关键字参数输入的数据来创建一个新的模型。

如果输入数据无法解析成有效的模型,将引发 ValidationError。

参数custom_headers(可选[Dict[str,str]]]) =None
参数fetch_schema_from_transport(可选[bool]) =None
参数graphql_endpoint(必填 str)
run(query: str) str[source]

运行 GraphQL 查询并获取结果。

参数

query (str) –

返回类型

str