gaql_help
Get targeted guidance for Google Ads Query Language (GAQL) questions, with options for quick tips, topic filtering, and example inclusion.
Instructions
Targeted GAQL guidance from Google docs. Hints: set quick_tips=true for offline cheat-sheet; topics=[overview,grammar,structure,date_ranges,case_sensitivity,ordering,cookbook].
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_examples | No | reserve space for examples (best-effort) | |
max_chars | No | max characters to return (400-4000) | |
question | No | your GAQL question or keywords | |
quick_tips | No | return built-in cheat-sheet without network | |
topics | No | subset of topics to search |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"include_examples": {
"default": false,
"description": "reserve space for examples (best-effort)",
"type": "boolean"
},
"max_chars": {
"description": "max characters to return (400-4000)",
"maximum": 4000,
"minimum": 400,
"type": "number"
},
"question": {
"description": "your GAQL question or keywords",
"type": "string"
},
"quick_tips": {
"default": false,
"description": "return built-in cheat-sheet without network",
"type": "boolean"
},
"topics": {
"description": "subset of topics to search",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}