We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
graph init
There is quite a bit of technical debt with parameter validation. Multiple checks for required/incompatible flags result in spaghetti code and bugs.
Confusing flag combinations result in bad DX, there are a few that no longer needed and can be removed.
Need to streamline and simplify validation and re-evaluate some flags prior to v1 release.
There are 4 ways to init subgraph from command line in non-interactive way:
--from-contract
--from-example
--from-subgraph
--spkg
--from-*
--from-substreams
--skip-git
--protocol
The text was updated successfully, but these errors were encountered:
YaroShkvorets
No branches or pull requests
There is quite a bit of technical debt with parameter validation. Multiple checks for required/incompatible flags result in spaghetti code and bugs.
Confusing flag combinations result in bad DX, there are a few that no longer needed and can be removed.
Need to streamline and simplify validation and re-evaluate some flags prior to v1 release.
There are 4 ways to init subgraph from command line in non-interactive way:
--from-contract
--from-example
--from-subgraph
--spkg
--from-*
flags is specified then all required flags need to accompany it or command should fail.--from-*
is not specified we follow interactive flow.--spkg
? Change to--from-substreams
for uniformity--from-*
should have its own method with required/incompatible flag checks--skip-git
flag as planned--protocol
flag, since we have that information in the registry.The text was updated successfully, but these errors were encountered: