Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 2.12 KB

README.md

File metadata and controls

64 lines (45 loc) · 2.12 KB

Content Graph .Net C# SDK

C# SDK for Content Graph Services api.

This SDK is a C# wrapper around the Optimizely Content Graph API.

Accessing the Package

The package is published to the Episerver package repository as Optimizely.Graph.Source.Sdk

Usage

Set up your Content Graph Instance and Keypair

You will need an application key and secret key provided by your Turnstile credential to get started. You can find more information https://docs.developers.optimizely.com/platform-optimizely/v1.4.0-optimizely-graph/docs/introduction-optimizely-graph

Using the SDK

You can use the client by calling Create() and providing your base url, Content Graph source, application key and secret, then calling one of the provided functions for synchronizing Content Types and Content Data.

// Initialize the GraphSourceClient by calling the Create method
var client = GraphSourceClient.Create(new Uri("https://cg.optimizely.com"), "", "", "");

// Add a language preference
client.AddLanguage("en");

// Build any C# class object
public class ExampleClassObject
{
    public string FirstName { get; set; }

    public string LastName { get; set; }

    public int Age { get; set; }

    public SubType1 SubType { get; set; }

    public class SubType1
    {
        public string One { get; set; }

        public int Two { get; set; }
    }
}

// Use the client to configure content types
client.ConfigureContentType<ExampleClassObject>()
    .Field(x => x.FirstName, IndexingType.Searchable)
    .Field(x => x.LastName, IndexingType.Searchable)
    .Field(x => x.Age, IndexingType.Queryable)
    .Field(x => x.SubType, IndexingType.PropertyType);

client.ConfigurePropertyType<ExampleClassObject.SubType1>()
    .Field(x => x.One, IndexingType.Searchable)
    .Field(x => x.Two, IndexingType.Queryable);

// Save content types to Optimizely Graph
var result = await graphSourceClient.SaveTypesAsync();

Run Examples

In visual studio, set your startup project to the Optimizely.Graph.Source.Sdk.Sample project.

Issues

Log issues directly into GitHub. Pull Requests will be created to resolve those issues as soon as they are triaged.