-
| 
         Hi, I am following the below example, and using neo4j-graphql-java1.8.0 version.  
but I am not able to write the query without "where" clause for uuid. But I want to write the queries as shown in the example. Am I missing something?  | 
  
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            Palak-K9
          
      
      
        Apr 23, 2024 
      
    
    Replies: 1 comment 1 reply
-
| 
         You need to provide more information: 
 You referenced the example: Maybe you just need to remove the argument   | 
  
Beta Was this translation helpful? Give feedback.
                  
                    1 reply
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
I wanted to query users like the following -
But, following the above query wasn't giving me the correct result i.e. it was giving me users but not with the uuid, I was passing.
So, I had to query using the "where" keyword. The below query is working fine for me and its result is what I want to achieve without using the where keyword.
I found out that I have to set "useWhereFilter" to false in the GraphQLConfiguration.java class.