nexus-forge
nexus-forge copied to clipboard
Building and Using Knowledge Graphs made easy
Would be useful to have the ability to make the usual forge.elastic, forge.search calls but only to check the existence of something = non empty response with just an id...
- Saves the initial configuration used to initialize forge in the `._config` attribute
In the effort to solve https://github.com/BlueBrain/nexus-forge/issues/280 this option let's us use the `debug` version of the pyschacl validator.
At the moment there is no method to use the `refresh` option available in delta, this updates a resource without applying changes. This is very useful when updating the context...
At the moment the only parameters that can be overridden are the Store parameters. It should be also possible to change the configuration of Model, Resolvers, etc. when initializing a...
Add a method to generate automatically a contribution object with the shape: ```contribution = forge.from_json({ "type": "Contribution", "agent": { "id": f"https://bbp.epfl.ch/nexus/v1/realms/bbp/users/{decoded['preferred_username']}", "type": ["Agent", "Person"], "givenName": decoded["given_name"], "familyName": decoded["family_name"], "name": decoded["name"],...
Currently only one resource can be retrieve every time (one id) while multiple resources can be retrieved at once (as what is already been done in the search method).