ndex_find_users: Search user in NDEx

Description Usage Arguments Value REST query Note Examples

View source: R/ndex_users.R

Description

Returns a SearchResult object which contains an array of User objects

Usage

1
ndex_find_users(ndexcon, searchString = "", start, size)

Arguments

ndexcon

object of class NDExConnection linkndex_connect

searchString

string by which to search

start

integer (optional); specifies that the result is the nth page of the requested data. The default value is 0

size

integer (optional); specifies the number of data items in each page. The default value is 100

Value

Data frame with user information; NULL if no user are found.

REST query

GET: ndex_config$api$search$user

Note

Compatible to NDEx server version 1.3 and 2.0

Search strings may be structured

Examples

1
2
3
4
5
6
7
8
9
## Establish a server connection
ndexcon = ndex_connect()
## Find a user
users = ndex_find_users(ndexcon,"ndextutorials") 
names(users)
## [1] "properties"    "displayName"       "isIndividual"  "userName"     "password"        
## [6] "isVerified"    "firstName"         "lastName"      "diskQuota"    "diskUsed"        
##[11] "emailAddress"  "image"             "website"       "description"  "externalId"
##[16] "isDeleted"     "modificationTime"  "creationTime"    

ndexr documentation built on March 13, 2021, 2 a.m.