This query allows administrators to access all CSV export activity in this enterprise from Shibumi list and view sections.
This query is only accessible to Shibumi enterprise administrators. Other users will receive an error when attempting to run this query.
Results are sorted by the time at which the activity took place, with the most recent activity first.
Query
csvExportAuditActivity (Connection to CSVExportAudit)
Look up CSV export audit history. This query has a maximum page size of 100 items.
Argument | Type | Description |
---|---|---|
first | Int! |
See Pagination. |
after | Int! |
See Pagination. |
earliest | String |
Only fetch export activity after this date / time. See Date Values for the expected format. |
latest | String |
Only fetch export activity before this date / time. See Date Values for the expected format. |
username | String |
Only fetch export activity done by a specified user |
systemId | String |
Only fetch export activity done on a specific object with given UUID. |
itemName | String |
Only fetch export activity done on objects with a specific name |
workItem | WorkItemReference |
Only fetch export activity done on a specific work item |
Example
{
csvExportAuditActivity(username: "[email protected]", first: 100) {
nodes {
user {
emailAddress
},
timestamp,
sectionName,
itemName
}
}
}
{
"data": {
"csvExportAuditActivity": {
"nodes": [
{
"user": {
"emailAddress" : "[email protected]"
},
"timestamp": "2019-08-26T20:32:02.515Z",
"sectionName": "Work Items Tile",
"itemName": "Work Item 1"
},
{
"user": {
"emailAddress" : "[email protected]"
},
"timestamp": "2019-08-27T20:32:02.515Z",
"sectionName": "Metrics Tile",
"itemName": "Work Item 2"
}
]
}
}
}