From c1823ca7ad8bac605f1976ea9927971ec3ba47c6 Mon Sep 17 00:00:00 2001 From: Vladimir Ermolaev Date: Wed, 17 Nov 2021 14:26:25 +0000 Subject: [PATCH] GitBook: [#117] Relations --- SUMMARY.md | 1 + ...an-they-act-like-properties-or-fields-in-databases.md | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 faqs/relation-in-practice.-can-they-act-like-properties-or-fields-in-databases.md diff --git a/SUMMARY.md b/SUMMARY.md index 57b25df..dc73bcc 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -33,6 +33,7 @@ ## FAQ's +* [Relation in practice. Can they act like properties or fields in databases?](faqs/relation-in-practice.-can-they-act-like-properties-or-fields-in-databases.md) * [We are using IPFS. What is that?](faqs/we-are-using-ipfs.-what-is-that.md) * [Can pages be nested one to another?](faqs/can-pages-be-nested-one-to-another.md) * [How to add relation to multiple objects](faqs/how-to-add-relation-to-multiple-objects.md) diff --git a/faqs/relation-in-practice.-can-they-act-like-properties-or-fields-in-databases.md b/faqs/relation-in-practice.-can-they-act-like-properties-or-fields-in-databases.md new file mode 100644 index 0000000..699813f --- /dev/null +++ b/faqs/relation-in-practice.-can-they-act-like-properties-or-fields-in-databases.md @@ -0,0 +1,9 @@ +# Relation in practice. Can they act like properties or fields in databases? + +[relation.md](../fundamentals/relation.md "mention") is the foundation of our graph structure. They connect your objects into the knowledge graph. But, you can use them for broad purposes. For example: + +* You can also use relation to set some «primitive» value like: a date, a tag, a status, an email, or a phone number. Later we will update the system where even such values might be presented as Objects. +* Relations can be shown as columns in a “database” / “table” view by using [set.md](../fundamentals/set.md "mention"). So you can use them as properties in Notion for such case. +* Relations are global. You can change the name and you will update it everywhere. +* You can add any relation to any object using Blocks, Set or Object’s relation view. Take a look on [#adding-relations](../fundamentals/relation.md#adding-relations "mention") +