GraphQL API
Advanced Features
Advanced GraphQL features
Advanced Features
Persisted Queries (Optional)
For additional security, enable persisted queries in production. This allows only pre-approved queries to be executed.
Contact your account representative for information on enabling persisted queries for your tenant.
Custom Scalars
The API includes custom scalar types for specialized data:
DateTime: ISO 8601 date-time stringsJSON: Arbitrary JSON objects
Example usage:
query GetProducts {
products {
products {
id
title
created_at # DateTime scalar
metadata # JSON scalar
}
}
}