Query Multiple Resources at Once
Is it possible to query multiple tables at once in order to avoid potential side-effects with different number of renders and improve efficiency? See:
```js
const { dataGridProps } = useDataGrid();
...
Implement Oauth PCKE flow
Hi, I want to implement social logins into custom auth, but these all require a callback route and I was wondering how to deal with all that on refine.
Foreign Key in Meta.Select
Does anyone know how I can reference a column from the parent in meta. select? See:
```js
<Refine
dataProvider={dataProvider(supabaseClient)}...
How to get logged user ID from data provider?
I have a custom data provider. On the create function, I want to pass the logged user ID to the body of every create request. How can i do this?
This is my create function on Data provider
```...
AutoComplete not being filled automatically
Hello, i have an AutoComplete component inside a Controller from Hook Form, both inside an Edit view component of MUI. The other fields are automatically filled with the response from the request that the Edit component calls. But my AutoComplete doesn't fill with the value coming from the response. My code below:
const { autocompleteProps: processTypeProps } = useAutocomplete<any>(
{
resource: "process-type",
}...
Overriding refreshButton onClick handler
How can I override the onClick handler for the refresh button displayed in the Edit "Basic View" component?
How do I integrate MongoDB Backend to refine app-crm-minimal template?
I have an app that I have setup with the example: https://github.com/refinedev/refine/tree/master/examples/app-crm-minimal
But using this structure, I wanted to integrate my MongoDB backend as the data provider, but I'm having some trouble understanding this example structure...
why refresh required to have values bound to form here?
```
import { useShow, useOne } from "@refinedev/core";
import { Show, NumberField, DateField, Edit } from "@refinedev/mui";
import { Typography, Stack, Box, TextField } from "@mui/material";
import { Form } from "@formio/react";...
useForm diff btw @refinedev/core and @refinedev/react-hook-form?
useForm diff btw @refinedev/core and @refinedev/react-hook-form?
why register() method not work?
```
import { useSelect } from "@refinedev/core";
import { useForm } from "@refinedev/react-hook-form";
export const PostEdit: React.FC = () => {...
Multiple params in query
How can I use multiple params in a route?
Something like /user/:uid/object/:id ?
it seems that only "id" is a valid property for ParseResponse for ...
useList, get current pageSize and pageIndex
Hi, how can I get the current pageSize and pageIndex, like useTable has in its tableProps but then for useList
`redirect` useForm(@refinedev/antd) with nextjs-router doesn't work
Refine:
```
<Refine
routerProvider={routerProvider}
dataProvider={{...
Can one Antd table house two different resources (users and memberships) ?
Can one Antd table house two different resources (users and memberships)? If so, how?
How to create Multiple resource based on permanent filter?
How to create multiple resources from the same API endpoint but the difference is each resource has a different permanent filter?