useUpdateMany
useUpdateMany
is an extended version of TanStack Query's useMutation
. It supports all the features of useMutation
and adds some extra features.
- It uses the
updateMany
method as the mutation function from thedataProvider
which is passed to<Refine>
.
It is useful when you want to update many records at once.
If your data provider does not have a updateMany
method, useUpdateMany
will use the update
method instead. It is not recommended, because it will make requests one by one for each id. It is better to implement the updateMany
method in the data provider.
Basic Usageβ
The useUpdateMany
hook returns many useful properties and methods. One of them is the mutate
method which expects values
, resource
, and ids
as parameters. These parameters will be passed to the updateMany
method from the dataProvider
as parameters.
import { useUpdateMany } from "@refinedev/core";
const { mutate } = useUpdateMany();
mutate({
resource: "products",
values: {
name: "New Product",
material: "Wood",
},
ids: [1, 2, 3],
});
Realtime Updatesβ
This feature is only available if you use a Live Provider.
When the useUpdateMany
mutation runs successfully, it will call the publish
method from liveProvider
with some parameters such as channel
, type
etc. It is useful when you want to publish the changes to the subscribers on the client side.
Refer to the liveProvider
documentation for more information β
Invalidating Queriesβ
When the useUpdateMany
mutation runs successfully, by default it will invalidate the following queries from the current resource
: "list"
, "many"
, and "detail"
. That means, if you use useList
, useMany
, or useOne
hooks on the same page, they will refetch the data after the mutation is completed. You can change this behavior by passing invalidates
prop.
Refer to the query invalidation documentation for more information β
Propertiesβ
mutationOptions
β
mutationOptions
is used to pass options to the useMutation
hook. It is useful when you want to pass additional options to the useMutation
hook.
Refer to the useMutation
documentation for more information β
useUpdateMany({
mutationOptions: {
retry: 3,
},
});
mutationOptions
does not support onSuccess
and onError
props because they override the default onSuccess
and onError
functions. If you want to use these props, you can pass them to mutate functions like this:
const { mutate } = useUpdateMany();
mutate(
{
resource: "products",
values: {
name: "New Product",
material: "Wood",
},
ids: [1, 2, 3],
},
{
onError: (error, variables, context) => {
// An error occurred!
},
onSuccess: (data, variables, context) => {
// Let's celebrate!
},
},
);
overtimeOptions
β
If you want loading overtime for the request, you can pass the overtimeOptions
prop to the this hook. It is useful when you want to show a loading indicator when the request takes too long.
interval
is the time interval in milliseconds. onInterval
is the function that will be called on each interval.
Return overtime
object from this hook. elapsedTime
is the elapsed time in milliseconds. It becomes undefined
when the request is completed.
const { overtime } = useUpdateMany({
//...
overtimeOptions: {
interval: 1000,
onInterval(elapsedInterval) {
console.log(elapsedInterval);
},
},
});
console.log(overtime.elapsedTime); // undefined, 1000, 2000, 3000 4000, ...
// You can use it like this:
{
elapsedTime >= 4000 && <div>this takes a bit longer than expected</div>;
}
Mutation Parametersβ
resource
requiredβ
It will be passed to the updateMany
method from the dataProvider
as a parameter. The parameter is usually used as an API endpoint path. It all depends on how to handle the resource
in the updateMany
method. See the creating a data provider section for an example of how resources are handled.
const { mutate } = useUpdateMany();
mutate({
resource: "categories",
});
If you have multiple resources with the same name, you can pass the identifier
instead of the name
of the resource. It will only be used as the main matching key for the resource, data provider methods will still work with the name
of the resource defined in the <Refine/>
component.
For more information, refer to the
identifier
of the<Refine/>
component documentation β
ids
requiredβ
It will be passed to the updateMany
method from the dataProvider
as a parameter. It is used to determine which records will be updated.
const { mutate } = useUpdateMany();
mutate({
ids: [1, 2, 3],
});
values
requiredβ
It will be passed to the updateMany
method from the dataProvider
as a parameter. The parameter is usually used as the data to be updated. It contains the new values of the record.
const { mutate } = useUpdateMany();
mutate({
values: {
name: "New Category",
description: "New Category Description",
},
});
mutationMode
β
Mutation mode determines which mode the mutation runs with. Mutations can run under three different modes: pessimistic
, optimistic
, and undoable
. The default mode is pessimistic
.
Each mode corresponds to a different type of user experience.
Refer to the mutation mode documentation for more information β
const { mutate } = useUpdateMany();
mutate({
mutationMode: "undoable",
});
undoableTimeout
β
When mutationMode
is set to undoable
, undoableTimeout
is used to determine duration to wait before executing the mutation. Default value is 5000
milliseconds.
const { mutate } = useUpdateMany();
mutate({
mutationMode: "undoable",
undoableTimeout: 10000,
});
onCancel
β
The onCancel
property can be utilized when the mutationMode
is set to "undoable"
. It provides a function that can be used to cancel the ongoing mutation.
By defining onCancel
, undoable notification will not be shown automatically. This gives you the flexibility to handle the cancellation process in your own way, such as showing a custom notification or implementing any other desired behavior to allow users to cancel the mutation.
import { useRef } from "react";
import { useUpdateMany } from "@refinedev/core";
const MyComponent = () => {
const { mutate } = useUpdateMany();
const cancelRef = useRef<(() => void) | null>(null);
const updateItems = () => {
mutate({
//...
mutationMode: "undoable",
onCancel: (cancelMutation) => {
cancelRef.current = cancelMutation;
},
});
};
const cancelUpdate = () => {
cancelRef.current?.();
};
return (
<>
<button onClick={updateItems}>Update</button>
<button onClick={cancelUpdate}>Cancel</button>
</>
);
};
successNotification
β
NotificationProvider
is required for this prop to work.
After data is fetched successfully, useUpdateMany
can call the open
function from NotificationProvider
to show a success notification. With this prop, you can customize the success notification.
const { mutate } = useUpdateMany();
mutate({
successNotification: (data, values, resource) => {
return {
message: `${data.title} Successfully fetched.`,
description: "Success with no errors",
type: "success",
};
},
});
errorNotification
β
NotificationProvider
is required for this prop to work.
After data fetching is failed, useUpdateMany
will call the open
function from NotificationProvider
to show an error notification. With this prop, you can customize the error notification.
const { mutate } = useUpdateMany();
mutate({
errorNotification: (data, values, resource) => {
return {
message: `Something went wrong when getting ${data.id}`,
description: "Error",
type: "error",
};
},
});
meta
β
meta
is a special property that can be used to pass additional information to data provider methods for the following purposes:
- Customizing the data provider methods for specific use cases.
- Generating GraphQL queries using plain JavaScript Objects (JSON).
Refer to the meta
section of the General Concepts documentation for more information β
In the following example, we pass the headers
property in the meta
object to the updateMany
method. With similar logic, you can pass any properties to specifically handle the data provider methods.
const { mutate } = useUpdateMany();
mutate({
meta: {
headers: { "x-meta-data": "true" },
},
});
const myDataProvider = {
//...
updateMany: async ({
resource,
ids,
variables,
meta,
}) => {
const headers = meta?.headers ?? {};
const url = `${apiUrl}/${resource}`;
//...
//...
const { data } = await httpClient.patch(
url,
{ ids, variables },
{ headers },
);
return {
data,
};
},
//...
};
dataProviderName
β
If there is more than one dataProvider
, you can specify which one to use by passing the dataProviderName
prop. It is useful when you have a different data provider for different resources.
const { mutate } = useUpdateMany();
mutate({
dataProviderName: "second-data-provider",
});
invalidates
β
invalidates
is used to specify which queries should be invalidated after the mutation is completed.
By default, it invalidates the following queries from the current resource
: "list"
, "many"
and "detail"
. That means, if you use useList
, useMany
, or useOne
hooks on the same page, they will refetch the data after the mutation is completed.
const { mutate } = useUpdateMany();
mutate({
invalidates: ["list", "many", "detail"],
});
Return Valuesβ
Returns an object with TanStack Query's useMutation
return values.
Refer to the useMutation
documentation for more information β
Additional Valuesβ
overtime
β
overtime
object is returned from this hook. elapsedTime
is the elapsed time in milliseconds. It becomes undefined
when the request is completed.
const { overtime } = useUpdateMany();
console.log(overtime.elapsedTime); // undefined, 1000, 2000, 3000 4000, ...
APIβ
Mutation Parametersβ
Property | Description | Type | Default |
---|---|---|---|
resource Required | Resource name for API data interactions | string | |
ids Required | id for mutation function | BaseKey[] | |
values Required | Values for mutation function | TVariables | {} |
mutationMode | Determines when mutations are executed | "pessimistic | "optimistic | "undoable" | "pessimistic" * |
undoableTimeout | Duration to wait before executing the mutation when mutationMode = "undoable" | number | 5000ms * |
onCancel | Provides a function to cancel the mutation when mutationMode = "undoable" | (cancelMutation: () => void) => void | |
successNotification | Successful Mutation notification | SuccessErrorNotification | "Successfully updated resource " |
errorNotification | Unsuccessful Mutation notification | SuccessErrorNotification | "Error when updating resource (status code: statusCode )" |
meta | Meta data query for dataProvider | MetaDataQuery | {} |
dataProviderName | If there is more than one dataProvider , you should use the dataProviderName that you will use. | string | default |
invalidates | You can use it to manage the invalidations that will occur at the end of the mutation. | all , resourceAll , list , many , detail , false | ["list", "many", "detail"] |
*
: These props have default values inRefineContext
and can also be set on<Refine>
component.useUpdateMany
will use what is passed to<Refine>
as default but a local value will override it.
Type Parametersβ
Property | Desription | Type | Default |
---|---|---|---|
TData | Result data of the mutation. Extends BaseRecord | BaseRecord | BaseRecord |
TError | Custom error object that extends HttpError | HttpError | HttpError |
TVariables | Values for mutation function | {} | {} |
Return valueβ
Description | Type |
---|---|
Result of the TanStack Query's useMutation | UseMutationResult<{ data: TData }, TError, { resource:string; ids: BaseKey[]; values: TVariables; }, UpdateContext> * |
overtime | { elapsedTime?: number } |
*
UpdateContext
is an internal type.
- Basic Usage
- Realtime Updates
- Invalidating Queries
- Properties
mutationOptions
overtimeOptions
- Mutation Parameters
resource
ids
values
mutationMode
undoableTimeout
onCancel
successNotification
errorNotification
meta
dataProviderName
invalidates
- Return Values
- Additional Values
overtime
- API
- Mutation Parameters
- Type Parameters
- Return value