mirror of
				https://github.com/nitnelave/lldap.git
				synced 2023-04-12 14:25:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			188 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			188 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
query GetUserDetails($id: String!) {
 | 
						|
  user(userId: $id) {
 | 
						|
    id
 | 
						|
    email
 | 
						|
    displayName
 | 
						|
    firstName
 | 
						|
    lastName
 | 
						|
    creationDate
 | 
						|
    groups {
 | 
						|
      id
 | 
						|
      displayName
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |