You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we are doing yarn starbase run to run the Google Cloud(graph-google-cloud) integration with Starbase, the .env in .integrations/graph-google-cloud is not generated correctly. Therefore nothing is imported into the Neo4J database. Would you please have a look at this issue and supply the fix?
Here is the config.xml in different format that I tested.
Here is the .env generated .integrations/graph-google-cloud. According to docs[2], this .env is expecting only string. The json file name is treated as a string which is not getting any correct connections with GCP.
Here is the .env generated .integrations/graph-google-cloud. According to docs[2], this .env is expecting only string. The json object is just converted into [object Object] which is not a json object anymore.
That should let Starbase see the value as a flattened string value instead of an object. Long term, we can look at better handling when Starbase sees config values as objects like this, but this should hopefully be a workaround for you to move forward now.
When we are doing
yarn starbase run
to run the Google Cloud(graph-google-cloud) integration with Starbase, the .env in.integrations/graph-google-cloud
is not generated correctly. Therefore nothing is imported into the Neo4J database. Would you please have a look at this issue and supply the fix?Here is the config.xml in different format that I tested.
.env
generated.integrations/graph-google-cloud
. According to docs[2], this.env
is expecting only string. The json file name is treated as a string which is not getting any correct connections with GCP..env
generated.integrations/graph-google-cloud
. According to docs[2], this.env
is expecting only string. The json object is just converted into[object Object]
which is not a json object anymore.Referece:
[1] https://github.com/JupiterOne/starbase/blob/main/README.md?plain=1#L170
[2] https://github.com/JupiterOne/graph-google-cloud/blob/main/docs/development.md?plain=1#L229
The text was updated successfully, but these errors were encountered: