-
Notifications
You must be signed in to change notification settings - Fork 8
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
provide a schema file at runtime; post a schema definition to the server #172
Conversation
Can we add the inference code as a tool that can be called on data files? |
Building the schema from the data files will take some work. I suggest we add that tool in a future PR. |
47800af
to
a6afda9
Compare
Currently the PR supports 3 ways of generating a schema (config, post and periodic scan). I think there should be another method, to manually invoke a scan and store the results. This would allow someone to load arbitrary data, do a scan, and tweak the graph, and then load the results. |
Added #179 to implement requested behavior. |
The graph list includes the schema, those should probably be filtered out.
returns
|
The graph list intentionally includes the schema. Schemas are themselves graphs that can be traversed. |
…d bug; add schema post method to cli
582d2d7
to
088a1c0
Compare
closes #152
closes #176