Skip to content

Commit

Permalink
make 'fetch_schema_from_transport' an optional param to avoid breakin…
Browse files Browse the repository at this point in the history
…g change
  • Loading branch information
ztoliver authored Feb 15, 2024
1 parent ba068b0 commit ecfb827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/community/langchain_community/utilities/graphql.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class GraphQLAPIWrapper(BaseModel):

custom_headers: Optional[Dict[str, str]] = None
graphql_endpoint: str
fetch_schema_from_transport: bool
fetch_schema_from_transport: Optional[bool] = None
gql_client: Any #: :meta private:
gql_function: Callable[[str], Any] #: :meta private:

Expand Down

0 comments on commit ecfb827

Please sign in to comment.