mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
23 lines
457 B
JavaScript
23 lines
457 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const searchUsers = gql`
|
|
query ($searchText: String!, $currentPage: Int, $pageSize: Int, $notActivated: Boolean) {
|
|
searchUsers(
|
|
searchText: $searchText
|
|
currentPage: $currentPage
|
|
pageSize: $pageSize
|
|
notActivated: $notActivated
|
|
) {
|
|
userCount
|
|
userList {
|
|
userId
|
|
firstName
|
|
lastName
|
|
email
|
|
creation
|
|
emailChecked
|
|
}
|
|
}
|
|
}
|
|
`
|