moderate-tomatoM
Refine10mo ago
8 replies
moderate-tomato

nestjsx-crud

my request like this
const { tableProps, searchFormProps } = useTable({
    syncWithLocation: true,
    onSearch: (values) => {
      setSearchFormValues(values as Record<string, any>);
      return generateFilters(values as Record<string, any>);
    },
    meta: {
      join: [
        {
          field: "app",
        },
      ],
    },
  });


parsed url = ?join%5B0%5D=app&limit=10&page=1&offset=0

It doesn't work, but if I change to join=app it works
Was this page helpful?