Skip to content
#

neo4j

Here are 1,357 public repositories matching this topic...

dhui
dhui commented Apr 11, 2020

Is your feature request related to a problem? Please describe.
Provide help in CLI for sub-commands

Describe the solution you'd like
Sub-commands help should describe the sub-command's functionality and options available for the sub-command

Describe alternatives you've considered
N/A

Additional context
See: golang-migrate/migrate#370

jjg-dressipi
jjg-dressipi commented Mar 18, 2020

To use the seabolt adapter with neo4jrb, on Rails, one needs to add the line

config.neo4j.session.options = {
  adaptor_class: Neo4j::Core::CypherSession::Adaptors::Driver
}

to config/application.rb; but it seems that doing-so means that all configuration is expected to be
there, neo4j.yml is no-longer inspected for configuration. A typical RSpec error is then

Failure/Err
nabilzhafri
nabilzhafri commented Feb 28, 2017

Hi, when I query using attribute filter, it'll work fine. For example:

const query = [
   'MATCH (user:User {email: {email}})',
   'RETURN user'
].join('\n')

const params = {
   email: '[email protected]' // assume email exists
}

But when I passed inside WHERE statement, it doesn't seem to work:

const query = [
   'MATCH (user:User)',
   'WHERE email = {email}',
   
Phylodome
Phylodome commented May 13, 2019

I am confused as to how an example such as this, found in your documentation, is compatible with graphql-auth-directives:

const server = new ApolloServer({
  schema: augmentedSchema,
  context: ({ req }) => {
    return {  /* Note: We return a context object containing both `driver` and `req` fields */
      driver,
      req
    };
  }
});

Given that `graphql-auth-directiv

Yivan
Yivan commented Aug 5, 2019

Hello,

Thanks for this wonderful and powerfull program, and for sharing it with us.
I am in the process of testing it on a complexe symfony 4 application.
I would like to have report/result only on our bundles in src/, for instance src/MyBundle.
But this bundle depend of many classes in vendor/ and some other directory outside src/.

How can I set the anlaysis to covert reports only on `

Improve this page

Add a description, image, and links to the neo4j topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the neo4j topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.