import { gql } from "@apollo/client"; export const ALL_USERS = gql` query AllUsers ($searchUserInput: SearchUserInput) { allUsers (input: $searchUserInput) { id name } } `;