Kjac.NoCode.DeliveryApi 1.0.2

dotnet add package Kjac.NoCode.DeliveryApi --version 1.0.2
NuGet\Install-Package Kjac.NoCode.DeliveryApi -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kjac.NoCode.DeliveryApi" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Kjac.NoCode.DeliveryApi --version 1.0.2
#r "nuget: Kjac.NoCode.DeliveryApi, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Kjac.NoCode.DeliveryApi as a Cake Addin
#addin nuget:?package=Kjac.NoCode.DeliveryApi&version=1.0.2

// Install Kjac.NoCode.DeliveryApi as a Cake Tool
#tool nuget:?package=Kjac.NoCode.DeliveryApi&version=1.0.2

No-Code Delivery API

The No-Code Delivery API package enables a no-code/configuration approach to the Umbraco CMS Delivery API, including:

  • Custom filters and sorters for querying the Delivery API.
  • CORS policies for clients consuming the Delivery API.
  • Links to content preview (draft content) and published content directly from the Umbraco backoffice.

Installing the package

[!IMPORTANT] First and foremost, make sure the Delivery API is enabled. See the Umbraco Delivery API docs for details.

The package is installed from NuGet:

dotnet add package Kjac.NoCode.DeliveryApi

Once installed you'll find a "No-Code Delivery API" entry in the "Settings" section tree. Clicking this entry opens up the management UI, where you can configure querying and clients.

The No-Code Delivery API overview

Querying configuration

In the "Querying" section you can define custom filters and sorters for querying the Delivery API. Both are based on content property data

The created filters and sorters are automatically documented in the built-in Swagger UI (/umbraco/swagger/). Here you'll find samples on their usage as well as details on the applicable syntax for the different types of filters and sorters. The Swagger UI is also an excellent playground for testing your filters and sorters.

Example of the Swagger UI displaying a No-Code filter

[!IMPORTANT] When a filter or a sorter is created or updated, the changes will immediately take effect for newly created content. All existing content however must be re-published for the changes to take effect. Alternatively, the "DeliveryApiContentIndex" can be rebuilt from the Examine Management dashboard.

This also applies to the built-in filters shipped with this package (read more below).

Filters

A filter is defined by:

  1. Its name. A filter name must be unique, because it is used to auto-generate the filter alias. You'll use the alias to execute the filter in your Delivery API queries.
  2. One or more content property aliases. When a filter is executed, it is evaluated against the values of these content properties. Multiple aliases can be supplied, in case the filter values are partitioned across multiple properties. If a given content item contains multiple of these properties, the filter evaluates an OR match against them.
  3. A field type (string, number or date). This both dictates how the filter understands your Delivery API queries, and how the subsequent evaluation is performed.
    • String field types allow for simple queries and different kinds of matching (see below).
    • Number and date field types allow for more complex queries like range filtering. They require that your Delivery API queries and the defined property values are numeric or dates, respectively.
  4. A match type (string fields only), defining if the filter should perform an exact match or a partial match.
    • Use exact matching for identifier type fields, e.g. product SKUs or content pickers.
    • Use partial matching for textual (wildcard) searches.

Sorters

A sorter is defined by:

  1. Its name. A sorter name must be unique, because it is used to auto-generate the sorter alias. You'll use the alias to execute the sorter in your Delivery API queries.
  2. A content property alias. The sorter uses the value of this property to sort the result of your Delivery API query.
  3. A field type (string, number or date). This both dictates how the sorter understands your Delivery API queries, and how the subsequent sorting is performed.
    • String field types perform alphanumerical sorting.
    • Number field types perform numeric sorting. They require that your Delivery API queries and the defined property values are numerics.
    • Date field types perform date/time sorting. They require that your Delivery API queries use the ISO 8601 format yyyy-MM-ddTHH:mm:ss (the time component is optional), and that the defined property values dates.

Clients configuration

In the "Clients" section you can define your Delivery API consumers. This allows for automatic CORS policies as well as for outgoing links from the Umbraco backoffice (e.g. for previewing content).

A client is defined by:

  1. Its name. Unlike filters and sorters, this is purely used for identification purposes in the Umbraco backoffice.
  2. The origin (or domain) of the consumer. It must include the HTTP scheme, e.g. https://mydomain.com or http://localhost:3000. CORS policies will be applied to this origin, ensuring that your consumer is able to query the Delivery API from CORS restricted environments (e.g. a web browser).
  3. A optional path to trigger preview. If the client supports content preview to be triggered via an URL, enter the relative path to this URL here. The path will be appended to the origin. To provide context for the preview, various placeholders can be used in the preview path (see below). The resulting preview links will be shown in the "Save and preview" button pop-up menu in the Umbraco content editor.
  4. A optional path to view the published content. Similarly to the preview path, this will be appended to the origin, and placeholders can be applied here too. The resulting links will be shown in the "Info" section of the Umbraco content editor.
  5. For multi-lingual setups, it is possible to define if the origin serves only one specific language or all languages. This is used in conjunction with the outgoing links, to ensure that only the language relevant links are shown in the Umbraco content editor at any given time.

You can use the following placeholders when defining the preview and published content links:

  • {id} - the ID of the content.
  • {path} - the content path.
  • {start-id} - the ID of the content "start item".
  • {start-path} - the path of the content "start item".
  • {culture} - the culture (language) of the content.

For example, given the client origin http://localhost:3000:

  • The path /trigger-preview?id={id}&root={start-path} would yield a resulting link like http://localhost:3000/trigger-preview?id=fb3086d5-3a50-4d68-85dc-32c6c786df37&root=home.
  • The path /{culture}/{path} would yield a resulting link like http://localhost:3000/en-US/path/to/content.

All of these placeholder values should be directly idenfifiable in the Delivery API output for any given content item.

[!TIP] Refer to the "Concepts" section of the Umbraco Delivery API docs for more information on both the placeholder values and how to handle preview.

Built-in filters

The package ships with a few useful filters. These are enabled by default and documented in the Swagger UI.

Level filter

This filter allows for querying content items based on their level in the content tree. The filter supports all query operators including range filtering.

Usage examples:

  • ?filter=nocLevel:2 - returns all level 2 content items.
  • ?filter=nocLevel:2,3 - returns all content items on level 2 and 3.
  • ?filter=nocLevel:!2,3 - returns all content items except those on level 2 and 3.
  • ?filter=nocLevel>2 - returns all content items on levels greater than level 2.

IsNot filter

This filter lets you omit a specific content item from the query result. The filter supports only the equality operator.

Usage examples:

  • ?filter=nocIsNot:cb738769-82fd-4b0d-9b51-d1626cc7b0bc - omits the content item with ID "cb738769-82fd-4b0d-9b51-d1626cc7b0bc" from the result.

Deployment

The package maintains a few configuration files with all filters and sorters in the folder /NoCode/DeliveryApi/. When Umbraco starts up, these files are read and any changes are synchronized to the Umbraco database.

If you have multiple Umbraco environments, you can deploy filters and sorters automatically between environments by including these files in your Umbraco deployment.

[!NOTE] In load-balanced setups, these files are only ever handled by the "Publisher" instance.

[!IMPORTANT] Clients are omitted from the deployment because they are expected to vary between environments. In other words, any changes to clients must be deployed manually.

No-Code Headless Mode

You should consider the installing No-Code Headless Mode package also 😄

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.2 179 3/5/2024
1.0.1 70 3/5/2024
1.0.0 180 1/14/2024