Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs snippets #1770

Merged
merged 8 commits into from
Jul 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/advanced/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ As you can see, state operators are very powerful to start moving your immutable

## Snippets

Check this [section]() for more operators that you can add to your application.
Check this [section](./../snippets/operators.md) for more operators that you can add to your application.

## Relevant Articles

Expand Down
5 changes: 4 additions & 1 deletion docs/snippets/operators.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# State Operators Snippets

In this section you will find state operators that didnt make it to the library but can be very helpful in your app.
In this section you will find state operators that are not part of the library but can be very helpful in your app.

## upsertItem

Expand Down Expand Up @@ -45,3 +45,6 @@ export function upsertItem<T>(
);
}
```
### Collaborate with your awesome operator!

Have you identified an use case for a new operator? If that's the case you can collaborate sharing it here! To learn more read this [issue](https://github.com/ngxs/store/issues/926) and submit your PR with your operator as part of the _Snippets_ section.