-
Notifications
You must be signed in to change notification settings - Fork 151
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
Documentation for 2.0.0 #242
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
81f29cc
Beginning of documentation for relationship properties
darrellwarde f68de2c
Basic migration guide (navigation a little broken)
darrellwarde f24d4c1
Continued work on 2.0.0 docs
darrellwarde 405ca1c
Fixed headers not working for new pages (page keys cannot begin with …
darrellwarde bd295fc
Remove node from where clause of connect
darrellwarde 599451f
A couple of outstanding documentation tasks
darrellwarde e09a2f9
Highlight that req must be passed into context, add lambda edge case
darrellwarde cb3b2a1
Clarify Point and CartesianPoint usage in docs
darrellwarde 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
This file contains 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 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 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 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
[[rel-migration]] | ||
= 2.0.0 Migration | ||
|
||
Version 2.0.0 of `@neo4j/graphql` adds support for relationship properties, with some breaking changes to facilitate these new features. All of the required changes will be on the client side, and this guide will walk through what has changed. | ||
|
||
== How to Upgrade | ||
|
||
Simply update `@neo4j/graphql` using npm or your package manager of choice: | ||
|
||
[source, bash] | ||
---- | ||
npm update @neo4j/graphql | ||
---- | ||
|
||
From this point on, it is primarily Mutations which will form the bulk of the migration: | ||
|
||
1. <<rel-migration-mutations>> for how you need to change your Mutations to work with the new schema |
Oops, something went wrong.
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.
Will this work due to the fact it will be alpha and npm won't push users onto an unstable version?
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.
It won't, but I've written it in the tense of "we've released 2.0.0 stable" so that it's ready to merge into master whenever we are. Do you think that will be fine?