View source: R/labkey.getQueryInfo.R
labkey.getDefaultViewDetails | R Documentation |
Fetch a list of output fields and their attributes that are avaialble from the default view of a given query
labkey.getDefaultViewDetails(baseUrl, folderPath,
schemaName, queryName)
baseUrl |
a string specifying the |
folderPath |
a string specifying the |
schemaName |
a string specifying the |
queryName |
a string specifying the |
Queries have a default “views” associeated with them. A query view can describe a subset or superset of the fields defined by the query.
A query view is defined by using the “Customize View” button option on a LabKey data grid page. getDefaultViewDetails
has the same arguments
and returns the same shape of result data frame as getQueryDetails
.The default view is the what you will get back on calling
labkey.selectRows
or getRows
.
The output field attributes of the default view are returned as a data frame. See labkey.getQueryDetails
for a description.
Peter Hussey, peter@labkey.com
labkey.selectRows
,
makeFilter
,
labkey.executeSql
,
labkey.updateRows
,
labkey.insertRows
,
labkey.importRows
,
labkey.deleteRows
,
labkey.getSchemas
,
labkey.getQueries
,
labkey.getQueryViews
,
labkey.getQueryDetails
,
labkey.getLookupDetails
## Not run:
## Details of fields of a default query view
# library(Rlabkey)
queryDF <- labkey.getDefaultViewDetails(
baseUrl="http://localhost:8080/labkey",
folderPath="/apisamples",
schemaName="lists",
queryName="AllTypes")
queryDF
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.