mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
10 lines
107 B
GraphQL
10 lines
107 B
GraphQL
query ($query: String!) {
|
|
users {
|
|
search(query:$query) {
|
|
id
|
|
name
|
|
email
|
|
}
|
|
}
|
|
}
|