8e59ee7243
* refactor: moving away from 'user' query + various fixes * fix: linting issue in stream tests * fix(server): some tests broken after rebase onto main
11 lines
120 B
GraphQL
11 lines
120 B
GraphQL
query UserById($id: String!) {
|
|
otherUser(id: $id) {
|
|
id
|
|
name
|
|
bio
|
|
company
|
|
avatar
|
|
verified
|
|
}
|
|
}
|