This repository was archived by the owner on Sep 3, 2021. It is now read-only.
This repository was archived by the owner on Sep 3, 2021. It is now read-only.
[Error: No such field: __typename] when using orderBy #581
Open
Description
When I'm not using orderBy my query is fine, however when using it my query like below it's appending __typename to the query (it's supposed to be a DateTime) and then returning an error because it doesn't exist.
Any ideas?
Also out of curiousity is this repo actively maintained?
query get_rooms($id: ID!) {
User (id: $id) {
rooms(orderBy: latest_message_desc) {
id
latest_message {
formatted
}
things(first:3){
id
name
image
}
}
}
}
Metadata
Metadata
Assignees
Labels
No labels