query
Execute custom GraphQL operations against your BaseQL endpoint for complex data retrieval, joins across tables, or advanced filtering not covered by other tools.
Instructions
Execute custom GraphQL queries against your BaseQL endpoint. Use this for complex queries, joins across tables, or when other tools don't meet your needs. BaseQL uses Float (not Int) for numbers, _page_size/_page for pagination, and unquoted keys in filters like {email: "test@example.com"}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | GraphQL query string. Example: 'query { contacts(_page_size: 5, _filter: {type: "Student"}) { id firstName email } }'. Use _order_by for sorting: '_order_by: {lastName: "asc"}'. Access linked records: 'purchaser { id fullName }'. | |
| variables | No | GraphQL variables as key-value pairs. Example: {"emailDomain": "umd.edu"} |