OptiGraphExtensions 5.0.1
See the version list below for details.
dotnet add package OptiGraphExtensions --version 5.0.1
NuGet\Install-Package OptiGraphExtensions -Version 5.0.1
<PackageReference Include="OptiGraphExtensions" Version="5.0.1" />
<PackageVersion Include="OptiGraphExtensions" Version="5.0.1" />
<PackageReference Include="OptiGraphExtensions" />
paket add OptiGraphExtensions --version 5.0.1
#r "nuget: OptiGraphExtensions, 5.0.1"
#:package OptiGraphExtensions@5.0.1
#addin nuget:?package=OptiGraphExtensions&version=5.0.1
#tool nuget:?package=OptiGraphExtensions&version=5.0.1
OptiGraphExtensions
An Optimizely CMS 12 AddOn that provides comprehensive management of synonyms, pinned results, webhooks, saved queries, and request logs within Optimizely Graph. This package enables content editors and administrators to enhance search experiences through intelligent synonym mapping, result pinning capabilities, webhook event management, GraphQL query building, and API monitoring.
Key Features
🔍 Synonym Management
- Create, update, and delete synonyms for enhanced search functionality
- Language Routing: Support for multiple synonym groups with different languages
- Synonym Slots: Assign synonyms to Slot ONE or TWO for different synonym sets
- Slot Filter: Filter synonyms by slot using dropdown selector
- Real-time synchronization with Optimizely Graph (grouped by language and slot)
- Intelligent caching with automatic invalidation
- Clean admin interface with language filter and slot selection dropdowns
📌 Pinned Results Management
- Create and manage pinned results collections
- Associate specific content with search phrases
- Content Search Autocomplete: Search for content items instead of manually entering GUIDs
- Target Content Display: Shows human-readable content names in the table instead of GUIDs
- Priority-based result ordering
- Language Filter: Filter pinned results by language with dropdown selector
- Collection ID Display: View collection IDs in the collections table for easy reference
- Bidirectional synchronization with Optimizely Graph (preserves content names during sync)
- Cascade Delete: Delete collections with associated pinned items properly handled
- Full CRUD operations including collection deletion from Graph
🔔 Webhook Management
- Create, edit, and delete webhooks registered with Optimizely Graph
- Topic Selection: Subscribe to specific events (doc.created, doc.updated, doc.deleted, bulk.*, etc.)
- Wildcard Support: Use patterns like
*.*for all events ordoc.*for all document events - Filter Configuration: Add filters to narrow webhook triggers (e.g., status equals Published)
- Status Control: Enable/disable webhooks without deleting them
- HTTP Method Selection: Configure webhook HTTP method (POST, GET, PUT, PATCH, DELETE)
- Help Tooltips: Detailed descriptions for topics and filter examples
- Real-time synchronization with Optimizely Graph API
- Status Filter: Filter webhook list by active/disabled status
📊 Query Library
- Build, save, and execute GraphQL queries directly against Optimizely Graph
- Visual Query Builder: Intuitive interface for building queries without writing GraphQL
- Content type selection from your Graph schema
- Field picker with checkbox interface
- Filter configuration with multiple operators (equals, contains, starts with, greater than, etc.)
- Sort options and language filtering
- Raw GraphQL Mode: Full-featured editor for advanced users
- Direct GraphQL query editing
- Query variables support in JSON format
- Syntax validation before execution
- Query Management: Save and organize frequently-used queries
- Name and describe queries for easy reference
- Edit and refine saved queries over time
- Run saved queries with a single click
- CSV Export: Export query results for further analysis
- Export current preview results instantly
- Full pagination support for large datasets
- Progress indicator for long-running exports
- Mode Switching: Seamlessly switch between visual and raw modes with automatic query conversion
📋 Request Logs
- Monitor and analyze API requests between your CMS and Optimizely Graph
- Comprehensive Log Viewing: Detailed information for every Graph API request
- Request details: HTTP method, path, host, timestamps
- Response data: Status codes, success/failure indicators, duration
- Operation context: GraphQL operation names and user information
- Full payloads: Complete request and response bodies for debugging
- Server-side Filtering: Query the Graph API with specific parameters
- Filter by request ID for tracing specific operations
- Filter by host or path
- Filter by success/failure status
- Client-side Filtering: Additional filtering after data retrieval
- Date range selection
- HTTP method filter (GET, POST, PUT, DELETE, etc.)
- Free-text search across paths, operations, messages, and users
- Export Capabilities: Share or analyze logs offline
- CSV export for spreadsheet analysis
- JSON export for programmatic processing
- Exports respect current filter selections
- Detail View: Click any log entry for complete information
🎨 Administration Interface
- Clean, intuitive admin interface integrated with Optimizely CMS
- Blazor components for interactive UI elements
- Pagination support for large datasets
- Real-time validation and centralized error handling
- Bulk operations and sync capabilities
- About page with version and system information
⚡ Performance Optimizations
- Intelligent Caching: Repository-level caching with automatic cache invalidation
- Connection Pooling: Efficient HTTP connection management via IHttpClientFactory
- Optimized Architecture: Clean code principles with SOLID design patterns
- Reduced Complexity: 40% reduction in component code through refactoring
Quick Start
Installation
Install the NuGet package in your Optimizely CMS 12 project:
dotnet add package OptiGraphExtensions
Configuration
Add the following to your Program.cs or Startup.cs:
// Add services
services.AddOptiGraphExtensions(options =>
{
options.ConnectionStringName = "EPiServerDB"; // Optional, defaults to "EPiServerDB"
});
// Configure the application
app.UseOptiGraphExtensions();
As this is a Blazor-based admin interface, ensure that Blazor server-side is set up in your Optimizely CMS project.
// Add Blazor services
services.AddServerSideBlazor();
// Map Blazor hub
app.UseEndpoints(endpoints =>
{
endpoints.MapContent();
endpoints.MapBlazorHub();
endpoints.MapControllers();
});
Add your Graph instance configuration to appsettings.json, this information can be found within PaaSPortal for a PaaS instance of Optimizely CMS12 and within the dashboard of a SaaS instance of Optimizely CMS 12
"Optimizely": {
"ContentGraph": {
"GatewayAddress": "<your graph instance gateway address>",
"AppKey": "<your graph instance key>",
"Secret": "<your graph instance secret>"
}
}
Additional Configuration Customisation
The configuration of the module has some scope for modification by providing configuration in the service extension methods. Both the provision of optiGraphExtensionsSetupOptions and authorizationOptions are optional in the following example.
Example:
services.AddOptiGraphExtensions(optiGraphExtensionsSetupOptions =>
{
optiGraphExtensionsSetupOptions.ConnectionStringName = "EPiServerDB";
},
authorizationOptions =>
{
authorizationOptions.AddPolicy(OptiGraphExtensionsConstants.AuthorizationPolicy, policy =>
{
policy.RequireRole("WebAdmins");
});
});
Authentication With Optimizely Opti ID
If you are using the new Optimizely Opti ID package for authentication into Optimizely CMS and the rest of the Optimizely One suite, then you will need to define the authorizationOptions for this module as part of your application start up. This should be a simple case of adding policy.AddAuthenticationSchemes(OptimizelyIdentityDefaults.SchemeName); to the authorizationOptions as per the example below.
serviceCollection.AddOptiGraphExtensions(optiGraphExtensionsSetupOptions =>
{
optiGraphExtensionsSetupOptions.ConnectionStringName = "EPiServerDB";
},
authorizationOptions =>
{
authorizationOptions.AddPolicy(OptiGraphExtensionsConstants.AuthorizationPolicy, policy =>
{
policy.AddAuthenticationSchemes(OptimizelyIdentityDefaults.SchemeName);
policy.RequireRole("WebAdmins");
});
});
Project Structure
src/
├── OptiGraphExtensions/ # Main AddOn library
│ ├── Administration/ # Admin controllers and view models
│ ├── Entities/ # Entity Framework models
│ ├── Features/
│ │ ├── Common/ # Shared components and services
│ │ │ ├── Caching/ # Cache services and invalidation
│ │ │ ├── Components/ # Base component classes
│ │ │ ├── Exceptions/ # Custom exceptions
│ │ │ ├── Services/ # Shared services (error handling, validation)
│ │ │ └── Validation/ # Validation framework
│ │ ├── Configuration/ # Service registration and setup
│ │ ├── ContentSearch/ # Content search for autocomplete
│ │ │ ├── Services/ # Graph search service
│ │ │ └── Models/ # Search result models
│ │ ├── Synonyms/ # Synonym management feature
│ │ │ ├── Services/ # CRUD, sync, validation services
│ │ │ ├── Repositories/ # Data access with caching
│ │ │ └── Models/ # Request/response models
│ │ ├── PinnedResults/ # Pinned results management feature
│ │ │ ├── Services/ # CRUD, sync, validation services
│ │ │ ├── Repositories/ # Data access with caching
│ │ │ └── Models/ # Request/response models
│ │ ├── Webhooks/ # Webhook management feature
│ │ │ ├── Services/ # CRUD and validation services
│ │ │ └── Models/ # Request/response models
│ │ ├── QueryLibrary/ # Query library feature
│ │ │ ├── Services/ # Query execution, CSV export, schema discovery
│ │ │ ├── Repositories/ # Saved query data access with caching
│ │ │ └── Models/ # Query models and execution results
│ │ └── RequestLogs/ # Request logs feature
│ │ ├── Services/ # Log retrieval and export services
│ │ └── Models/ # Log models and filter options
│ ├── Menus/ # CMS menu integration
│ └── Views/ # Razor views and layouts
├── OptiGraphExtensions.Tests/ # NUnit test project
└── Sample/
└── SampleCms/ # Example implementation
Development
Prerequisites
- .NET 8.0 SDK
- SQL Server or SQL Server Express
- Optimizely CMS 12 development environment
Building the Project
# Build the main solution
dotnet build src/OptiGraphExtensions.sln
# Build the sample CMS
dotnet build Sample/SampleCms.sln
# Build in Release mode for packaging
dotnet build src/OptiGraphExtensions.sln -c Release
Running Tests
# Run all tests
dotnet test src/OptiGraphExtensions.Tests/OptiGraphExtensions.Tests.csproj
# Run tests with coverage
dotnet test src/OptiGraphExtensions.Tests/OptiGraphExtensions.Tests.csproj --collect:"XPlat Code Coverage"
Running the Sample CMS
cd Sample/SampleCms
dotnet run
Navigate to /optimizely-graphextensions/administration/ in your CMS to access the management interface.
Architecture
Clean Architecture & SOLID Principles
The AddOn follows clean architecture and SOLID principles with clear separation of concerns:
- Entities: Domain models and Entity Framework configuration
- Repositories: Data access layer with caching decorators
- Services: Decomposed services following Single Responsibility Principle
- Controllers: RESTful API endpoints and admin interface controllers
- Components: Refactored Blazor components with base class inheritance
Key Architectural Improvements
🏗️ Service Decomposition
- Before: Monolithic services (392+ lines)
- After: Focused services following Single Responsibility
- Separate CRUD, validation, and synchronization services
- Facade pattern for coordinating multiple services
- 15+ new focused service classes
🚀 Performance Enhancements
- Intelligent Caching: Repository decorator pattern with automatic invalidation
- Connection Pooling: IHttpClientFactory for efficient HTTP connections
- Code Optimization: 40% reduction in component complexity
🛡️ Robust Error Handling
- Centralized error handling via ComponentErrorHandler
- Custom exception types for better error tracking
- Graceful fallback to local data when Graph is unavailable
✅ Comprehensive Testing
- 145+ unit tests with 100% pass rate
- Service layer testing with Moq framework
- Repository operation testing
- Validation logic coverage
Configuration Options
services.AddOptiGraphExtensions(options =>
{
// Database connection string name (default: "EPiServerDB")
options.ConnectionStringName = "EPiServerDB";
// Additional configuration options available
});
Database Schema
The AddOn creates the following database tables:
tbl_OptiGraphExtensions_Synonyms: Stores synonym definitions- Columns: Id, SynonymItem, Language, Slot (ONE=1, TWO=2), CreatedAt, CreatedBy
tbl_OptiGraphExtensions_PinnedResultsCollections: Stores pinned results collections- Columns: Id, Title, IsActive, GraphCollectionId, CreatedAt, CreatedBy
tbl_OptiGraphExtensions_PinnedResults: Stores individual pinned results- Columns: Id, CollectionId, Phrases, TargetKey (GUID), TargetName (display name), Language, Priority, IsActive, GraphId, CreatedAt, CreatedBy
Optimizely Graph Integration
The AddOn provides seamless integration with Optimizely Graph:
- Automatic Synchronization: Keep local data in sync with Graph collections
- Bidirectional Updates: Changes flow both ways between local database and Graph
- Collection Management: Full CRUD operations including deletion from Graph
- Connection Pooling: Efficient HTTP connection management for Graph API calls
- Error Handling: Graceful fallback to local data when Graph is unavailable
- Authentication: Supports Optimizely Graph authentication requirements
- Sync Status Tracking: Real-time sync status for collections and results
Synonym API Parameters
When syncing synonyms to Optimizely Graph, the following parameters are used:
| Parameter | Description | Values |
|---|---|---|
language_routing |
Groups synonyms by language for localized search | Language code (e.g., "en", "sv") |
synonym_slot |
Assigns synonyms to different slots | ONE or TWO |
API URL Format:
{gatewayUrl}/resources/synonyms?language_routing={language}&synonym_slot={ONE|TWO}
Synonyms are grouped by both language and slot when syncing, allowing for:
- Language-specific synonym sets for multilingual sites
- Multiple synonym configurations per language using different slots
Webhook Management
Webhooks allow you to receive notifications when content changes occur in Optimizely Graph. The AddOn provides full webhook management capabilities:
| Feature | Description |
|---|---|
| Topics | Subscribe to specific events: doc.created, doc.updated, doc.deleted, bulk.*, *.* |
| Filters | Narrow triggers using field/operator/value filters (e.g., status eq Published) |
| HTTP Methods | Configure webhook method: POST, GET, PUT, PATCH, DELETE |
| Status | Enable/disable webhooks without deletion |
Note: Due to a limitation in the Optimizely Graph PUT endpoint (which doesn't reliably update topics/filters), the AddOn implements updates by deleting and recreating webhooks. This means webhook IDs will change after editing.
Query Library
The Query Library allows you to build and execute GraphQL queries directly against Optimizely Graph:
| Feature | Description |
|---|---|
| Visual Builder | Build queries using dropdowns and checkboxes without writing GraphQL |
| Raw Mode | Write GraphQL queries directly with variable support |
| Schema Discovery | Automatically discovers content types and fields from your Graph schema |
| Saved Queries | Save, name, and organize frequently-used queries |
| CSV Export | Export query results with full pagination support |
Supported Filter Operators:
eq(equals),neq(not equals)contains,startsWithgt(greater than),lt(less than)gte(greater or equal),lte(less or equal)
Request Logs
The Request Logs feature provides visibility into API communications with Optimizely Graph:
| Feature | Description |
|---|---|
| Log Retrieval | Fetches request/response logs from the Graph API |
| Filtering | Server-side and client-side filtering options |
| Export | Export to CSV or JSON formats |
| Detail View | Full request/response payloads for debugging |
API Query Parameters:
| Parameter | Description |
|-----------|-------------|
| requestId | Filter by specific request ID |
| host | Filter by host |
| path | Filter by request path |
| success | Filter by success status (true/false) |
| page | Pagination page number |
Authorization
The admin interface requires users to be members of one of the following roles:
- CmsAdmins
- Administrator
- WebAdmins
Testing
The project includes comprehensive NUnit tests covering:
- Service layer functionality with 100% pass rate
- Repository operations including caching behavior
- Validation logic and error handling
- Controller standards and conventions
- CRUD operations for all entities
- Graph synchronization services
- Content search service and API controller
- Query library services (execution, export, schema discovery)
- Request log services and export functionality
- Request mapping and DTOs
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add or update tests as needed
- Ensure all tests pass
- Submit a pull request
Dependencies
- .NET 8.0
- Optimizely CMS 12 (EPiServer.CMS.UI.Core 12.23.0)
- Entity Framework Core 8.0.19 with SQL Server provider
- Microsoft.Extensions.Caching.Memory for caching
- Microsoft.Extensions.Http for connection pooling
- NUnit 3.14.0 for testing
- Moq 4.20.72 for mocking in tests
- System.ComponentModel.Annotations for validation
License
This project is licensed under the MIT License. See the LICENSE file for details.
Support
For issues, questions, or contributions, please visit the project repository or contact the development team.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- EPiServer.CMS.UI.Core (>= 12.23.0)
- Microsoft.EntityFrameworkCore (>= 6.0.6)
- Microsoft.EntityFrameworkCore.SqlServer (>= 6.0.6)
-
net8.0
- EPiServer.CMS.UI.Core (>= 12.23.0)
- Microsoft.EntityFrameworkCore (>= 8.0.19)
- Microsoft.EntityFrameworkCore.SqlServer (>= 8.0.19)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 6.0.0 | 90 | 1/16/2026 | |
| 5.0.5 | 101 | 1/12/2026 | |
| 5.0.4 | 83 | 1/12/2026 | |
| 5.0.3 | 82 | 1/12/2026 | |
| 5.0.2 | 83 | 1/12/2026 | |
| 5.0.1 | 79 | 1/12/2026 | |
| 5.0.0 | 88 | 1/12/2026 | |
| 4.0.0 | 92 | 1/7/2026 | |
| 3.1.0 | 90 | 1/7/2026 | |
| 3.0.0 | 83 | 1/5/2026 | |
| 2.2.0 | 243 | 12/19/2025 | |
| 2.1.0 | 431 | 12/17/2025 | |
| 2.0.0 | 269 | 12/16/2025 | |
| 1.2.0 | 264 | 12/16/2025 | |
| 1.1.0 | 210 | 12/14/2025 | |
| 1.0.0 | 326 | 9/25/2025 | |
| 0.1.4-beta | 305 | 9/16/2025 | |
| 0.1.3-beta | 261 | 9/15/2025 | |
| 0.1.2-beta | 216 | 9/14/2025 | |
| 0.1.1-beta | 223 | 9/14/2025 |