在https://github.com/calebmer/postgraphql作者展示了一个模式:
create table post (
id serial primary key,
author_id int non null references user(id),
headline text,
body text,
…
);
如果我想引用多个作者并使用数组引用它们,我将如何重写架构?会是:author_id int[] non null references user(id)
?