Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Supabase data provider returns wrong sorted list for foreign table colmun #6229

Open
noritsune opened this issue Aug 4, 2024 · 4 comments
Labels
bug Something isn't working up for grabs

Comments

@noritsune
Copy link
Contributor

Describe the bug

I tryed to sort by foreign table colmn with Supabase data provider. But the result is not sorted.

Steps To Reproduce

  1. Call getList() of Supabase data provider with sort option like below
sorters: [
    {
      field: "categories.title",
      order: "asc",
    },
]
  1. Checks whether the results of getList() are sorted by a specified column, but they are not sorted

Expected behavior

The results of getList() are sorted by the specific column of foreign table.

Packages

@refinedev/supabase: 5.9.2

Additional Context

I already found how to fix this bug.
If you assign me this issue, I can fix Supabase data provider refer to the following issue.
supabase/supabase-js#971

@noritsune noritsune added the bug Something isn't working label Aug 4, 2024
@alicanerdurmaz
Copy link
Member

Hello @noritsune, thanks for improving Refine. I assigned it to you 👍

@noritsune
Copy link
Contributor Author

Thank you for assign. I'm working for this issue.

@aliemir
Copy link
Member

aliemir commented Aug 21, 2024

Hey @noritsune, any updates on this one? We'll be happy to help if you have any issues 🙏

@noritsune
Copy link
Contributor Author

Hi @aliemir ,

I’ve researched ordering with Supabase SDK and PostgREST, and I found that Supabase relies on PostgREST for ordering. There are two types of ordering available:

  • Top-level Ordering:

    • The query parameter looks like this: order=directors(last_name)
  • Embedded Ordering:

    • The query parameter looks like this: actors.order=last_name
    • This type of ordering isn’t explicitly named in the documentation, so I’ve referred to it as Embedded Ordering.

However, the current Supabase DataProvider doesn't distinguish between these two ordering methods. It only supports Embedded Ordering at the moment.

To address this, I’m considering adding a meta.isEmbeddedOrdering option to the getList method within the DataProvider. I believe Top-level Ordering should be the default behavior, as it’s more suited for table views—such as in the example of blog posts.

What are your thoughts on this approach?

By the way, I’m unable to work on this issue at the moment. If there’s someone else who can take it on, please feel free to assign them. If not, I’ll plan to work on it in a few months.

@BatuhanW BatuhanW removed this from the September Release milestone Sep 3, 2024
@BatuhanW BatuhanW changed the title [BUG]Supabase data provider returns wrong sorted list for foreign table colmun [BUG] Supabase data provider returns wrong sorted list for foreign table colmun Sep 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working up for grabs
Projects
None yet
Development

No branches or pull requests

4 participants