-
Notifications
You must be signed in to change notification settings - Fork 22
Snowflake #675
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
Open
AlexicaWright
wants to merge
10
commits into
neo4j:console
Choose a base branch
from
AlexicaWright:snowflake
base: console
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+87
−14
Open
Snowflake #675
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ac41dce
update image
AlexicaWright 0476187
some content
AlexicaWright f3d620c
more content
AlexicaWright 2dd9808
Merge branch 'console' into snowflake
AlexicaWright a3bdbf8
remove image
AlexicaWright 803d8cd
edits and typos
AlexicaWright 2b906c9
typo
AlexicaWright f4993a5
punctutation
AlexicaWright 7d6c0f5
Merge branch 'console' into snowflake
AlexicaWright 475a0e6
Merge branch 'console' into snowflake
AlexicaWright File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,26 @@ | |
= Data modeling | ||
|
||
The data model is the is the blueprint for the database. | ||
It defines how the data is organized and is the key to create a graph from your files. | ||
The data model is what you map your files to. | ||
It defines how the data is organized and is the key to create a graph from your data. | ||
The data model is what you map your tables or files to. | ||
It consists of nodes and relationships. | ||
Nodes need to have a _label_ and one or more _properties_. | ||
Relationships need to have a _type_ and one or more _properties_. | ||
|
||
When you connect a remote data source, you are offered to have the model generated and mapped for you. | ||
You can also upload a model, with or without data, in a _.json_ format. | ||
You can add a new model and see your available models (if you have any) in the *Graph models* tab. | ||
If you add a new model, you can either either *Connect to a data source* to select a source from your list (see xref:import/file-provision.adoc[] for information about data sources), or you can drag and drop (or browse for) local flat files. | ||
|
||
Once you have defined your data source, you have three options to create your model: | ||
|
||
* *Define manually* - sketch your model and map your data | ||
* *Generate from schema* - automatically define and map a model based on tables and constraints in your data | ||
* *Generate with AI* - if you have enabled *Generative AI assistance* (in the xref:visual-tour/index.adoc#org-settings[Organization settings]), your model and mapping is automatically defined using AI on available metadata in your data source, to give you a more complete model. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does "a more complete model." mean? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That you get a model that is closer to completion. Keep reading on line 21. |
||
|
||
When you have a model generated, with or without AI, always review and make sure the model and mapping is done as expected. | ||
The generated model as meant to be a starting point and you add elements to it as needed since a relational database often does not contain sufficient information for the Import service to generate a complete model. | ||
Depending on what metadata your data contains, you may get a more complete model if you generate with AI. | ||
|
||
If you are streaming local files, you can also upload a model, with or without data, in a _.json_ format via the [*...*] more menu. | ||
But if you want full control of how your data is modeled, you can create the model manually. | ||
|
||
The data model panel is located in the center of the screen. | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does "iterative and manual." mean? @AlexicaWright
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That you do this manually in more than one iteration, unlike with the remote data sources where things are automatic and in one go.