- Implemented GraphQL endpoints for importing, querying, and deleting Zabbix templates and template groups. - Added support for full template data import, including items, preprocessing steps, tags, and linked templates. - Implemented dependent item support by deferred creation logic in the template importer. - Added ability to query templates and template groups with name pattern filtering (supporting Zabbix wildcards). - Implemented batch deletion for templates and template groups by ID or name pattern. - Improved error reporting by including detailed Zabbix API error data in GraphQL responses. - Added comprehensive unit and integration tests covering all new functionality. - Provided GraphQL sample queries and mutations in the 'docs' directory for all new endpoints.
18 lines
273 B
GraphQL
18 lines
273 B
GraphQL
### Query
|
|
Use this query to verify the results of the template import.
|
|
|
|
```graphql
|
|
query GetTemplates($name_pattern: String) {
|
|
templates(name_pattern: $name_pattern) {
|
|
templateid
|
|
name
|
|
}
|
|
}
|
|
```
|
|
|
|
### Variables
|
|
```json
|
|
{
|
|
"name_pattern": "BT_DEVICE_TRACKER"
|
|
}
|
|
```
|