Add expectedCount

This commit is contained in:
Jackson Harper 2023-06-08 19:59:02 +08:00
parent d92e5f3fd1
commit 36bb40a6f3

View file

@ -26,7 +26,11 @@ export async function bulkActionMutation(
$query: String!
$expectedCount: Int
) {
bulkAction(query: $query, action: $action) {
bulkAction(
query: $query
action: $action
expectedCount: $expectedCount
) {
... on BulkActionSuccess {
success
}