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
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
