Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expect list resource to use singular name of model #1528

Open
mdnorman opened this issue Aug 30, 2024 · 0 comments
Open

Expect list resource to use singular name of model #1528

mdnorman opened this issue Aug 30, 2024 · 0 comments

Comments

@mdnorman
Copy link

The docs say to define models queries like so:

type Query {
  messages: [Message]
  message(id: ID): Message
}

However, this creates resources like so:

GET /messages
GET /message/:id

For a standard rest interface, I would expect the resources would be:

GET /message
GET /message/:id

That way the list and single value have the same resource path.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant