You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering if this plugin could work with deeply nested unique relationships, eg :
create table user (
id text not null primary key,
name text not null unique
);
create table author (
id serial primary key,
user_id int not null unique,
constraint author_user_fkey foreign key (user_id)
references user (id)
);
create table writer (
id serial primary key,
author_id int not null unique,
constraint writer_author_fkey foreign key (author_id)
references author (id)
);
query example {
writers(orderBy: USER_BY_AUTHOR_ID_BY_WRITER_ID__NAME_ASC) {
nodes {
name
}
}
}
Thank you !
The text was updated successfully, but these errors were encountered:
Hello there,
I was wondering if this plugin could work with deeply nested unique relationships, eg :
Thank you !
The text was updated successfully, but these errors were encountered: