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)
?