Nothing
#' Delete user from map
#'
#' Allows the user to delete an interviewer from a map to be used in CAPI data collection.
#'
#' @param endpoint GraphQL endpoint of your server
#' @param workspace Server Workspace, if NULL uses default
#' @param user your API username
#' @param password your API user password
#' @param token If Survey Solutions server token is provided \emph{apiUser} and \emph{apiPass} will be ignored
#' @param fileName the name of the map file on the server
#' @param userName the name of the interviewer to whom the map will be assigned to
#'
#' @return if successfull, returns a list with the executed mutation
#'
#' @examplesIf suso_gql_pwcheck()==200
#' ## Requires Survey Solutions Server and API credentials
#'
#' # Delete map seg_168_ALL.tif from user int0073
#'
#' suso_gql_deleteuserfrommap(endpoint = ep, user = usr,
#' password = pass, workspace = ws,
#' fileName = "seg_168_ALL.tif", userName = "int0073")
#'
#'
#' @export
suso_gql_deleteuserfrommap <- function(endpoint = NULL,
workspace = NULL,
user = NULL,
token = NULL,
password = NULL,
fileName = NULL,
userName = NULL) {
# workspace default
workspace<-.ws_default(ws = workspace)
# check inputs
.check_basics(token, endpoint, user, password)
# define your query
query <- sprintf('
mutation($workspace: String $fileName: String! $userName: String!) {
deleteUserFromMap(workspace: $workspace fileName: $fileName userName: $userName) {
fileName
size
maxScale
minScale
shapeType
shapesCount
importDateUtc
uploadedBy
users {
userName
}
xMaxVal
yMaxVal
xMinVal
yMinVal
wkid
}
}
')
################################
# create the variables list
# 1. Top level
variables <- list()
if (!is.null(workspace)) {
variables$workspace <- workspace
}
if (!is.null(fileName)) {
variables$fileName <- fileName
}
if (!is.null(userName)) {
variables$userName <- userName
}
# create the body of the request
body <- list(query = query)
if (!is.null(variables)) {
body$variables <- variables
}
# build the url
url<-.baseurl_baseauth(endpoint, body, user, password, retry = 3)
# perform the request
result<-.perform_request(url)
return(result$data)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.