mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-13 08:24:46 +00:00
33 lines
593 B
JavaScript
33 lines
593 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const searchUsers = gql`
|
|
query (
|
|
$searchText: String!
|
|
$currentPage: Int
|
|
$pageSize: Int
|
|
$notActivated: Boolean
|
|
$isDeleted: Boolean
|
|
) {
|
|
searchUsers(
|
|
searchText: $searchText
|
|
currentPage: $currentPage
|
|
pageSize: $pageSize
|
|
notActivated: $notActivated
|
|
isDeleted: $isDeleted
|
|
) {
|
|
userCount
|
|
userList {
|
|
userId
|
|
firstName
|
|
lastName
|
|
email
|
|
creation
|
|
emailChecked
|
|
hasElopage
|
|
emailConfirmationSend
|
|
deletedAt
|
|
}
|
|
}
|
|
}
|
|
`
|