不确定为什么 supabase 不从外部返回值 table
Unsure why supabase is not returning values from foreign table
我有一个查询也从国外选择 table。当前table已经有外键关系。这是我的查询
const { data, error } = await supabase
.from('comments')
.select('content,created_at,user(pfp,username)')
.eq('chapter', chapterid)
.limit(7)
.select()
这是返回的内容:
{id: 5, created_at: "2022-03-03T18:16:20.592125+00:00", user: "7a2750e7-0d25-4a40-9236-ce7a42d61bd2", chapter: "1b4e4595-089e-457c-ac89-9ed4eace0ca9", content: "Woahh"}
我的评论table
table 用户列引用(个人资料table)
此问题已在 GitHub
上得到回答
You have an extra .select() at end which fetches all columns...
我有一个查询也从国外选择 table。当前table已经有外键关系。这是我的查询
const { data, error } = await supabase
.from('comments')
.select('content,created_at,user(pfp,username)')
.eq('chapter', chapterid)
.limit(7)
.select()
这是返回的内容:
{id: 5, created_at: "2022-03-03T18:16:20.592125+00:00", user: "7a2750e7-0d25-4a40-9236-ce7a42d61bd2", chapter: "1b4e4595-089e-457c-ac89-9ed4eace0ca9", content: "Woahh"}
我的评论table
table 用户列引用(个人资料table)
此问题已在 GitHub
上得到回答You have an extra .select() at end which fetches all columns...