Feat/account owner picker (#359)
* Added account owner picker * Regenerated graphql files * Fixed pickers staying in edit mode with a new generic hook * Fixed lint
This commit is contained in:
@ -28,8 +28,16 @@ export const SEARCH_PEOPLE_QUERY = gql`
|
||||
`;
|
||||
|
||||
export const SEARCH_USER_QUERY = gql`
|
||||
query SearchUser($where: UserWhereInput, $limit: Int) {
|
||||
searchResults: findManyUser(where: $where, take: $limit) {
|
||||
query SearchUser(
|
||||
$where: UserWhereInput
|
||||
$limit: Int
|
||||
$orderBy: [UserOrderByWithRelationInput!]
|
||||
) {
|
||||
searchResults: findManyUser(
|
||||
where: $where
|
||||
take: $limit
|
||||
orderBy: $orderBy
|
||||
) {
|
||||
id
|
||||
email
|
||||
displayName
|
||||
|
||||
Reference in New Issue
Block a user