Graphql
GraphQLToolSpec #
Bases: BaseToolSpec
Requests Tool.
Source code in llama-index-integrations/tools/llama-index-tools-graphql/llama_index/tools/graphql/base.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
graphql_request #
graphql_request(query: str, variables: str, operation_name: str)
Use this tool to make a GraphQL query against the server.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The GraphQL query to execute |
required |
variables
|
str
|
The variable values for the query |
required |
operation_name
|
str
|
The name for the query |
required |
example input
"query":"query Ships {\n ships {\n id\n model\n name\n type\n status\n }\n}", "variables":{}, "operation_name":"Ships"
Source code in llama-index-integrations/tools/llama-index-tools-graphql/llama_index/tools/graphql/base.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|