| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- converted_tools
- [
- {
- "function": {
- "description": "Discover the GraphQL schema structure",
- "name": "introspect",
- "parameters": {
- "properties": {
- "typeName": {
- "description": "Optional type name to introspect",
- "type": "string"
- }
- },
- "type": "object"
- }
- },
- "type": "function"
- },
- {
- "function": {
- "description": "Execute a GraphQL query",
- "name": "query",
- "parameters": {
- "properties": {
- "query": {
- "description": "The GraphQL query string",
- "type": "string"
- }
- },
- "required": [
- "query"
- ],
- "type": "object"
- }
- },
- "type": "function"
- },
- {
- "function": {
- "description": "Execute a GraphQL mutation",
- "name": "mutate",
- "parameters": {
- "properties": {
- "mutation": {
- "description": "The GraphQL mutation string",
- "type": "string"
- }
- },
- "required": [
- "mutation"
- ],
- "type": "object"
- }
- },
- "type": "function"
- }
- ]
|