thick-tealT
Refine8mo ago
4 replies
thick-teal

Does the simple-rest provider support passing query parameters through meta property?

the following code
const { data, isLoading } = useList<EquipmentResDto>({
filters: [
{
field: "serialNumber",
operator: "contains",
value: targetEquipment || "",
}
],
meta: {
populate: ["location", "category"]
}
});

doesnt send my populate query when fetching list items
Was this page helpful?