conventional-blackC
Refine2y ago
4 replies
conventional-black

i want to get one more field with useSelect

const {options, queryResult} = useSelect({
resource,

optionValue: useFilter ? "country_code" as any : idField as any,
optionLabel: "name",
pagination: {
mode: "server",
pageSize: 300,
},

});
i want to add another item from the queryResult object to options. how to do that?
Was this page helpful?