Skip to content

Commit

Permalink
Doc update: Custom Projection -> Custom Aggregations to avoid dup…
Browse files Browse the repository at this point in the history
…licate entry (#2774)

* Update index.md
* Update config.ts
* Updated Node-version to 18.x
---------
Co-authored-by: Babu Annamalai <babu.annamalai@gmail.com>
  • Loading branch information
gfoidl committed Nov 17, 2023
1 parent ebd995b commit 9199350
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
config: Release
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
node_version: 16.x
node_version: 18.x

jobs:
build-and-test-code:
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default withMermaid({
text: 'Aggregate Projections', link: '/events/projections/aggregate-projections', items: [
{ text: 'Live Aggregations', link: '/events/projections/live-aggregates' },
{ text: 'Multi-Stream Projections', link: '/events/projections/multi-stream-projections' },
{ text: 'Custom Projections', link: '/events/projections/custom-aggregates' },]
{ text: 'Custom Aggregations', link: '/events/projections/custom-aggregates' },]
},
{ text: 'Event Projections', link: '/events/projections/event-projections' },
{ text: 'Custom Projections', link: '/events/projections/custom' },
Expand Down
2 changes: 1 addition & 1 deletion docs/events/projections/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Do note that all the various types of aggregated projections inherit from a comm
1. [Single Stream Projections](/events/projections/aggregate-projections) combine events from a single stream into a single view.
2. [Multi Stream Projections](/events/projections/multi-stream-projections) are a specialized form of projection that allows you to aggregate a view against arbitrary groupings of events across streams.
3. [Event Projections](/events/projections/event-projections) are a recipe for building projections that create or delete one or more documents for a single event
4. [Custom Projections](/events/projections/custom-aggregates) are a recipe for building aggregate projections that require more logic than
4. [Custom Aggregations](/events/projections/custom-aggregates) are a recipe for building aggregate projections that require more logic than
can be accomplished by the other aggregation types. Example usages are soft-deleted aggregate documents that maybe be recreated later or
if you only apply events to an aggregate if the aggregate document previously existed.
5. If one of the built in projection recipes doesn't fit what you want to do, you can happily build your own [custom projection](/events/projections/custom)
Expand Down

0 comments on commit 9199350

Please sign in to comment.