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
{{ message }}
This repository was archived by the owner on Sep 3, 2021. It is now read-only.
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
}
}
}
}