GraphQLAPIWrapper#

class langchain_community.utilities.graphql.GraphQLAPIWrapper[source]#

基础类:BaseModel

GraphQL API 的封装器。

要使用,您应该安装gql python包。 此包装器将使用GraphQL API进行查询。

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

如果输入数据无法验证以形成有效模型,则引发 [ValidationError][pydantic_core.ValidationError]。

self 被显式地设为仅位置参数,以允许 self 作为字段名称。

param custom_headers: Dict[str, str] | None = None#
param fetch_schema_from_transport: bool | None = None#
param graphql_endpoint: str [Required]#
run(query: str) str[source]#

运行一个GraphQL查询并获取结果。

Parameters:

query (str)

Return type:

字符串