Skip to content

Question : Does this work with deeply nested relationships ? #32

Open
@Eldow

Description

Hello there,

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 !

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions