Select with a match and eq() are not working

Hey guys, I have a simple data base structure like
| BlogId | ArticleId | URL |
... ... ...

I try to select from the table like:
 const { data, error } = await supabase
    .from("Articles")
    .select()
    .eq("URL", pageSlug)
    .match({ BlogId: blogId });


Result is [] <-- Im totally sure my blogId and my URL, pageSlug are identical.
Some help maybe :D?
Was this page helpful?