mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: Dotan Simha <dotansimha@gmail.com> Co-authored-by: Denis Badurina <denis@denelop.com>
11 lines
149 B
GraphQL
11 lines
149 B
GraphQL
extend type Query {
|
|
me: User
|
|
user(id: ID!): User
|
|
users: [User]
|
|
}
|
|
|
|
type User @key(fields: "id") {
|
|
id: ID!
|
|
name: String
|
|
username: String
|
|
}
|