-
Notifications
You must be signed in to change notification settings - Fork 49
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
Feat/new resources #17
Conversation
BREAKING CHANGE: New resources contain new dependencies. One of these contains graphql which may require you to delete and reinstall node modules. We have updated several versions so when updating, you should rerun yarn install and may need to remove node_modules before hand.
Could we get this PR merged :) would be nice to have it working. |
@sureshHARDIYA Unfortunately this is probably not going to happen today. Since this PR is so large it is going to take some time to verify things are working the way we want and the newly generated code does not reintroduce old bugs. We have unit tests and some basic integration tests to verify the code runs fine, but we need to go through and try to make sure things are conformant. Once @jonterrylee and myself have had a chance to go over all this in detail and feel this is not a regression in any sense, we will get it merged. If you really need to use this you can check out this branch, |
@Robert-W thank you for notifying. I will check out |
* SIMPLE FEATURE FLAGS. SECRETS SHOULD BE PART OF YOUR DEPLOYMENT STRATEGY | ||
*/ | ||
|
||
if (process.env.NODE_ENV === 'development') { |
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.
is there a need for defaults?
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.
Nope, the defaults are already assumed in @asymmetrik/sof-graphql-invariant
. Smart on FHIR auth is enabled by default and GraphiQL will also require auth. These are basically just feature flags to control that behavior.
This PR makes the following changes:
@asymmetrik/sof-graphql-invariant
for cleaner Smart on FHIR supportBREAKING CHANGES (Listed in CHANGELOG.md):
@asymmetrik/sof-graphql-invariant
depends on a newer version of GraphQL than what was used. GraphQL has been updated here but when upgrading, users may need to removenode_modules
and reinstall. They will need to runyarn install
regardless since we added new dependencies.